:root {
  color-scheme: light;
  --ink: #20160d;
  --muted: #6c5b45;
  --line: #eadfce;
  --surface: #fffdf8;
  --surface-soft: #fff7e8;
  --solar: #ffbd2e;
  --solar-dark: #a95509;
  --copper: #e96f1d;
  --copper-dark: #5b2b12;
  --panel-blue: #1f6f9a;
  --panel-blue-light: #dff3ff;
  --clay: #c75524;
  --sky: #dff3ff;
  --charcoal: #241a12;
  --shadow: 0 20px 60px rgba(92, 50, 12, 0.16);
  --radius: 8px;
  --content: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffaf0;
  line-height: 1.5;
}

body.cart-open {
  overflow: hidden;
}

main {
  scroll-margin-top: 88px;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 12px clamp(16px, 4vw, 42px);
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid rgba(234, 223, 206, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: visible;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 246, 201, 0.96) 0 41%, transparent 42%),
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.9) 0 10%, transparent 11%),
    conic-gradient(from -18deg, #ffcf55 0 12%, #ff9c25 12% 22%, #ffcf55 22% 34%, #e96f1d 34% 46%, #ffcf55 46% 62%, #ff9c25 62% 76%, #ffcf55 76% 100%);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 246, 201, 0.45);
  box-shadow:
    0 0 0 2px rgba(255, 189, 46, 0.22),
    0 8px 18px rgba(169, 85, 9, 0.18);
  isolation: isolate;
}

.brand-mark::before {
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 4deg, rgba(255, 189, 46, 0.96) 0 8deg, transparent 8deg 17deg);
  content: "";
}

.brand-mark::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(32, 22, 13, 0.28);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.primary-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: clamp(10px, 1.8vw, 24px);
  min-width: 0;
  overflow-x: auto;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  scrollbar-width: none;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.primary-nav a {
  border-bottom: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover {
  color: var(--ink);
}

.primary-nav a[aria-current="page"] {
  border-bottom-color: var(--solar);
  color: var(--ink);
}

.cart-button,
.filter-button,
.icon-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.header-link-button {
  justify-content: center;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.mobile-nav-icon,
.mobile-nav-icon::before,
.mobile-nav-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav-icon {
  position: relative;
}

.mobile-nav-icon::before,
.mobile-nav-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.mobile-nav-icon::before {
  top: -6px;
}

.mobile-nav-icon::after {
  top: 6px;
}

.cart-count {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(620px, calc(100svh - 116px));
  overflow: hidden;
  background: var(--charcoal);
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: -2.5%;
  width: 105%;
  height: 105%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.04) translate3d(0, 0, 0);
  transform-origin: 66% 45%;
  animation: heroSceneDrift 18s ease-in-out infinite alternate;
  will-change: transform, filter;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 22, 13, 0.8) 0%, rgba(32, 22, 13, 0.5) 42%, rgba(32, 22, 13, 0.08) 100%),
    linear-gradient(0deg, rgba(169, 85, 9, 0.28), rgba(32, 22, 13, 0.04));
}

.hero-sun-bloom,
.hero-air-motion,
.hero-panel-glint {
  position: absolute;
  pointer-events: none;
}

.hero-sun-bloom {
  top: -16%;
  right: -6%;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 246, 201, 0.5) 0 5%, rgba(255, 216, 105, 0.26) 16%, rgba(233, 111, 29, 0.12) 34%, rgba(233, 111, 29, 0) 68%);
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: heroSunBreath 8s ease-in-out infinite;
}

.hero-air-motion {
  inset: -18% -10%;
  background:
    linear-gradient(108deg, transparent 0 35%, rgba(255, 246, 201, 0.1) 45%, transparent 57%),
    radial-gradient(ellipse at 76% 26%, rgba(255, 226, 154, 0.22), transparent 40%),
    radial-gradient(ellipse at 55% 78%, rgba(255, 255, 255, 0.07), transparent 48%);
  filter: blur(3px);
  mix-blend-mode: screen;
  opacity: 0.68;
  animation: heroAirDrift 13s ease-in-out infinite alternate;
}

.hero-panel-glint {
  width: 31%;
  height: 16%;
  border-radius: 999px;
  background: linear-gradient(98deg, transparent 0 16%, rgba(255, 255, 255, 0.42) 44%, rgba(255, 226, 154, 0.18) 55%, transparent 76%);
  filter: blur(11px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: rotate(-6deg) skewX(-16deg);
  animation: heroPanelGlint 9s ease-in-out infinite;
}

.hero-panel-glint-left {
  top: 47%;
  left: 36%;
}

.hero-panel-glint-right {
  top: 45%;
  left: 58%;
  animation-delay: 2.8s;
}

@keyframes heroSceneDrift {
  0% {
    filter: saturate(1) contrast(1) brightness(0.98);
    transform: scale(1.04) translate3d(-0.8%, -0.4%, 0);
  }

  45% {
    filter: saturate(1.04) contrast(1.02) brightness(1.02);
    transform: scale(1.065) translate3d(0.8%, 0.2%, 0);
  }

  100% {
    filter: saturate(1.02) contrast(1.01) brightness(1);
    transform: scale(1.05) translate3d(-0.2%, 0.7%, 0);
  }
}

@keyframes heroSunBreath {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.82;
    transform: scale(1.06);
  }
}

@keyframes heroAirDrift {
  0% {
    transform: translate3d(-1.6%, -0.6%, 0);
  }

  100% {
    transform: translate3d(1.8%, 0.8%, 0);
  }
}

@keyframes heroPanelGlint {
  0%,
  24% {
    opacity: 0;
    transform: translate3d(-22%, 0, 0) rotate(-6deg) skewX(-16deg);
  }

  38% {
    opacity: 0.34;
  }

  54% {
    opacity: 0.12;
  }

  70%,
  100% {
    opacity: 0;
    transform: translate3d(46%, -7%, 0) rotate(-6deg) skewX(-16deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, calc(100% - 32px));
  margin-left: clamp(16px, 7vw, 88px);
  padding: 40px 0 34px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--solar-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe29a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 5.4vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--solar);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(128, 74, 18, 0.18);
}

.button-primary:hover {
  background: #ffcf4a;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button-outline {
  border-color: var(--copper);
  background: transparent;
  color: var(--copper-dark);
}

.button-outline:hover {
  background: #fff1d1;
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
}

.full-width {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 500px;
  margin: 18px 0 0;
}

.hero-stats div {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.notice-band {
  padding: 16px clamp(16px, 4vw, 42px);
  background: var(--copper-dark);
  color: #fff;
}

.notice-band p {
  max-width: var(--content);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.section {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) 0;
  scroll-margin-top: 88px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3.5vw, 34px);
  align-items: start;
}

.intro-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signal-grid article,
.industry-card-grid article,
.component-section,
.product-card,
.score-card,
.article-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.signal-grid article {
  padding: 20px;
}

.signal-grid h3,
.article-grid h3 {
  margin-top: 12px;
}

.signal-grid p,
.industry-card-grid p,
.industry-overview-copy p,
.article-grid p,
.product-description,
.score-card p,
.guide-copy p,
.cart-summary p,
.sources-section li {
  color: var(--muted);
}

.signal-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.signal-dot.safe {
  background: var(--panel-blue);
}

.signal-dot.sun {
  background: var(--solar);
}

.signal-dot.clay {
  background: var(--clay);
}

.signal-dot.ink {
  background: var(--charcoal);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.industry-overview-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: start;
  padding-top: 8px;
}

.industry-overview-copy {
  display: grid;
  gap: 14px;
}

.industry-overview-copy p {
  margin: 0;
  font-size: 1.02rem;
}

.industry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.industry-card-grid article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.82), rgba(255, 253, 248, 0.96)),
    var(--surface);
  box-shadow: 0 14px 34px rgba(92, 50, 12, 0.06);
}

.industry-card-grid h3,
.industry-card-grid p {
  margin: 0;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-button {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
}

.filter-button.is-active {
  border-color: var(--copper);
  background: var(--copper);
  color: #fff;
}

.section-heading-wide {
  align-items: flex-start;
}

.section-heading-wide .muted {
  max-width: min(900px, 100%);
}

.component-recommendation-grid {
  display: grid;
  gap: 18px;
}

.component-section {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  box-shadow: 0 14px 38px rgba(92, 50, 12, 0.07);
}

.component-media {
  min-height: 100%;
  margin: 0;
  background: var(--sky);
}

.component-media .product-photo {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}

.component-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.component-body h3,
.component-summary {
  margin: 0;
}

.component-summary,
.recommendation-item p {
  color: var(--muted);
}

.recommendation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.recommendation-item {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 14px;
  border: 1px solid rgba(233, 111, 29, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdfa, #fff7e8);
}

.recommendation-tag {
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.recommendation-item h4 {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.25;
}

.recommendation-item p {
  margin: 9px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.recommendation-item .product-link {
  align-self: start;
  margin-top: auto;
  padding-top: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 12px 34px rgba(92, 50, 12, 0.06);
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--sky);
}

.product-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-art {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  background: var(--sky);
}

.product-art::before,
.product-art::after {
  position: absolute;
  content: "";
}

.panel-art {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.26), transparent 44%),
    linear-gradient(135deg, #23353d, #0f171b);
}

.panel-art::before {
  inset: 34px 30px;
  border: 3px solid #c5d6dd;
  background:
    linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.2) 25%, transparent 26%, transparent 49%, rgba(255, 255, 255, 0.2) 50%, transparent 51%, transparent 74%, rgba(255, 255, 255, 0.2) 75%, transparent 76%),
    linear-gradient(#1f6375, #132f40);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.18);
}

.battery-art {
  background:
    radial-gradient(circle at 70% 20%, rgba(246, 189, 47, 0.8), transparent 24%),
    linear-gradient(135deg, #fff2c6, #f3a24a);
}

.battery-art::before {
  right: 52px;
  bottom: 28px;
  width: 98px;
  height: 116px;
  border: 4px solid #1d2b28;
  border-radius: 6px;
  background: #f7faf5;
  box-shadow: -28px 18px 0 rgba(233, 111, 29, 0.28);
}

.battery-art::after {
  right: 92px;
  bottom: 128px;
  width: 20px;
  height: 9px;
  border-radius: 3px 3px 0 0;
  background: #1d2b28;
}

.mount-art {
  background: linear-gradient(135deg, #f2d4c4, #dff3ff);
}

.mount-art::before {
  inset: 44px 34px 46px;
  border-top: 8px solid var(--charcoal);
  border-right: 8px solid var(--charcoal);
  transform: skewX(-12deg);
}

.mount-art::after {
  left: 48px;
  right: 38px;
  bottom: 50px;
  height: 12px;
  background: var(--clay);
  transform: rotate(-12deg);
}

.meter-art {
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(135deg, #3a2517, var(--panel-blue));
}

.meter-art::before {
  left: 50%;
  top: 50%;
  width: 112px;
  height: 112px;
  border: 5px solid #0f1c18;
  border-radius: 50%;
  background: #f6fbf7;
  transform: translate(-50%, -50%);
}

.meter-art::after {
  left: 50%;
  top: 50%;
  width: 8px;
  height: 46px;
  border-radius: 999px;
  background: var(--solar-dark);
  transform: translate(-50%, -86%) rotate(42deg);
  transform-origin: bottom center;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-kicker,
.article-meta,
.score-label {
  margin: 0 0 8px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-description {
  min-height: 120px;
  margin: 12px 0 0;
}

.product-rating {
  display: grid;
  gap: 3px;
  margin: 0 0 12px;
  padding: 11px 12px;
  border: 1px solid rgba(233, 111, 29, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 189, 46, 0.18), rgba(255, 247, 232, 0.94));
}

.product-rating strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.product-rating span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-note {
  margin: 12px 0 0;
  padding: 10px 11px;
  border-left: 3px solid var(--solar);
  background: rgba(255, 189, 46, 0.12);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.spec-list {
  display: grid;
  gap: 6px;
  margin: 16px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
  list-style: none;
}

.spec-list li {
  display: flex;
  gap: 8px;
}

.spec-list li::before {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--solar);
  content: "";
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.price {
  font-size: 1.35rem;
  font-weight: 950;
}

.product-source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.product-source-row a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(233, 111, 29, 0.28);
  border-radius: 999px;
  background: rgba(255, 189, 46, 0.12);
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.affiliate-link,
.product-link,
.text-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-top: 0;
  padding: 0 11px;
  border: 1px solid rgba(233, 111, 29, 0.28);
  border-radius: 999px;
  background: rgba(255, 189, 46, 0.12);
  color: var(--copper-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.product-link,
.affiliate-link {
  border-color: var(--copper);
  background: var(--copper);
  color: #fff;
}

.review-policy {
  margin-top: 18px;
  padding: 15px 17px;
  border: 1px solid rgba(233, 111, 29, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 247, 232, 0.78);
  color: var(--muted);
  font-size: 0.94rem;
}

.review-policy strong {
  color: var(--ink);
}

.review-policy code,
.affiliate-section code {
  color: var(--copper-dark);
  font-weight: 850;
}

.seo-rotator-section {
  padding-top: 0;
}

.seo-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.seo-topic-card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fff8e7);
  box-shadow: 0 14px 38px rgba(92, 50, 12, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.seo-topic-card.is-active {
  border-color: rgba(233, 111, 29, 0.58);
  box-shadow: 0 18px 48px rgba(233, 111, 29, 0.18);
  transform: translateY(-2px);
}

.seo-topic-card span {
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.seo-topic-card h3,
.seo-topic-card p {
  margin: 0;
}

.seo-topic-card p {
  color: var(--muted);
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.affiliate-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(92, 50, 12, 0.08);
}

.affiliate-card:hover {
  transform: translateY(-2px);
}

.affiliate-card span {
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affiliate-card strong {
  font-size: 1.18rem;
  line-height: 1.2;
}

.affiliate-card small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.review-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.score-card {
  padding: 24px;
  background: var(--charcoal);
  color: #fff;
}

.score-card p {
  color: rgba(255, 255, 255, 0.72);
}

.score-number {
  margin: 8px 0 14px;
  color: var(--solar);
  font-size: 5.3rem;
  font-weight: 950;
  line-height: 0.9;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.86rem;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: start;
}

.checklist {
  display: grid;
  gap: 10px;
}

.checklist label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 750;
}

.checklist input {
  width: 20px;
  height: 20px;
  accent-color: var(--copper);
}

.calculator-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - var(--content)) / 2));
  padding-left: max(16px, calc((100% - var(--content)) / 2));
  background: linear-gradient(90deg, #dff3ff 0%, #fff1c7 100%);
}

.calculator {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 1.2fr;
  gap: 12px;
  align-items: end;
}

.calculator label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.input-row {
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.input-row input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.input-row span {
  flex: 0 0 auto;
  padding-right: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.estimate {
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--copper-dark);
  color: rgba(255, 255, 255, 0.74);
}

.estimate strong {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}

.muted {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.editorial-section,
.sources-section {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(18px, 3.5vw, 34px);
  align-items: start;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-grid article {
  padding: 22px;
}

.sources-section {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.sources-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sources-section a {
  color: var(--copper-dark);
  font-weight: 800;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  justify-content: flex-end;
  overflow: hidden;
  background: rgba(18, 27, 24, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  visibility: hidden;
}

.cart-drawer.is-open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.cart-panel {
  display: flex;
  width: min(430px, 100%);
  height: 100%;
  flex-direction: column;
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-size: 1.6rem;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  font-size: 1.15rem;
}

.cart-items {
  display: grid;
  gap: 12px;
  overflow: auto;
  padding: 18px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-line h3 {
  font-size: 1rem;
}

.cart-line p {
  margin: 4px 0 0;
  color: var(--muted);
}

.cart-line button {
  border: 0;
  background: transparent;
  color: var(--copper-dark);
  cursor: pointer;
  font-weight: 900;
}

.cart-empty {
  padding: 24px 0;
  color: var(--muted);
}

.cart-empty.is-hidden {
  display: none;
}

.cart-summary {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.cart-summary p {
  margin: 12px 0 0;
  font-size: 0.85rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 410px);
  gap: 22px;
  padding: 28px clamp(16px, 4vw, 42px);
  background: var(--charcoal);
  color: #fff;
}

.site-footer p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  color: #fff;
}

.newsletter {
  display: grid;
  gap: 10px;
  align-content: start;
}

.newsletter label {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}

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

.newsletter input {
  min-width: 0;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
}

.states-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: end;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px) 0 clamp(26px, 3.5vw, 40px);
}

.states-hero-copy h1 {
  max-width: 12ch;
}

.states-hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.tracker-date {
  display: inline-flex;
  margin-top: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(233, 111, 29, 0.24);
  border-radius: 999px;
  background: #fff1d1;
  color: var(--copper-dark) !important;
  font-size: 0.88rem !important;
  font-weight: 900;
}

.detect-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(92, 50, 12, 0.08);
}

.detect-panel h2 {
  font-size: 1.75rem;
}

.detect-panel p {
  color: var(--muted);
}

.detect-controls {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.detect-controls label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.detect-controls select {
  min-height: 48px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.detect-status {
  min-height: 42px;
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #fff6d7;
  color: #66410c !important;
  font-size: 0.92rem;
  font-weight: 800;
}

.status-summary-section {
  padding-bottom: 18px;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.status-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.status-dot.status-allowed,
.state-allowed,
.status-card-allowed {
  --status-color: #16804e;
  --status-bg: #dcf6e8;
}

.status-dot.status-pending,
.state-pending,
.status-card-pending {
  --status-color: #a75f17;
  --status-bg: #fff1c7;
}

.status-dot.status-banned,
.state-banned,
.status-card-banned {
  --status-color: #a83232;
  --status-bg: #fde2df;
}

.status-dot.status-inactive,
.state-inactive,
.status-card-inactive {
  --status-color: #66736e;
  --status-bg: #f2eee6;
}

.status-dot {
  background: var(--status-color);
}

.status-counts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.status-count-card {
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--status-color), white 72%);
  border-radius: var(--radius);
  background: var(--status-bg);
}

.status-count-card span {
  color: var(--status-color);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-count-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1;
}

.status-count-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.state-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 18px;
  align-items: stretch;
}

.state-map-wrap {
  overflow-x: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 82%, rgba(22, 128, 78, 0.1), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(255, 189, 46, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(216, 238, 243, 0.44), rgba(244, 247, 241, 0.2)),
    var(--surface);
}

.state-map {
  position: relative;
  min-width: 760px;
  overflow: hidden;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(221, 243, 255, 0.78), rgba(255, 247, 232, 0.62)),
    #f8fbf7;
  isolation: isolate;
}

.state-map-svg {
  display: block;
  width: 100%;
  min-width: 720px;
  height: auto;
}

.state-region {
  color: var(--status-color);
  cursor: pointer;
  outline: none;
}

.state-shape {
  fill: var(--status-bg);
  stroke: color-mix(in srgb, var(--status-color), white 38%);
  stroke-linejoin: round;
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
  transition:
    fill 140ms ease,
    filter 140ms ease,
    stroke 140ms ease,
    stroke-width 140ms ease;
}

.state-label {
  fill: color-mix(in srgb, var(--status-color), #1f160d 18%);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  paint-order: stroke;
  pointer-events: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-linejoin: round;
  stroke-width: 3px;
  text-anchor: middle;
  user-select: none;
}

.state-label-small {
  font-size: 8px;
}

.state-region:hover .state-shape,
.state-region:focus-visible .state-shape,
.state-region.is-selected .state-shape {
  filter: drop-shadow(0 7px 8px rgba(92, 50, 12, 0.16));
  stroke: var(--ink);
  stroke-width: 2;
}

.state-region.is-selected .state-shape {
  fill: color-mix(in srgb, var(--status-bg), #fff 18%);
}

.state-region:focus-visible .state-shape {
  outline: none;
}

.state-region.is-selected .state-label {
  fill: var(--ink);
}

.state-map-fallback {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

.state-fallback-button {
  min-height: 38px;
  border: 1px solid color-mix(in srgb, var(--status-color), white 52%);
  border-radius: 999px;
  background: var(--status-bg);
  color: var(--status-color);
  cursor: pointer;
  font-weight: 950;
}

.state-detail {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
}

.state-detail p {
  color: rgba(255, 255, 255, 0.76);
}

.detail-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-heading h3 {
  font-size: 2rem;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.pill-allowed {
  background: #daf2e4;
  color: #14533e;
}

.pill-pending {
  background: #fff0bd;
  color: #74410f;
}

.pill-banned {
  background: #ffd9d4;
  color: #862424;
}

.pill-inactive {
  background: #edf2ee;
  color: #45504b;
}

.state-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 16px;
}

.state-facts div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.state-facts dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.state-facts dd {
  margin: 5px 0 0;
  font-weight: 850;
}

.detail-caution {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.pipeline-section {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: start;
  padding-top: 18px;
}

.pipeline-section p {
  color: var(--muted);
}

.stage-list {
  display: grid;
  gap: 12px;
}

.stage-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.stage-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--solar);
  color: var(--ink);
  font-weight: 950;
}

.stage-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.tracker-table-section {
  padding-top: 18px;
}

.tracker-table .is-selected td {
  background: #fff1c7;
}

.table-state-button {
  border: 0;
  background: transparent;
  color: var(--copper-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.tracker-sources {
  padding-bottom: clamp(28px, 4vw, 44px);
}

.manufacturer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.manufacturer-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.manufacturer-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(92, 50, 12, 0.08);
}

.manufacturer-card .button {
  margin-top: 22px;
}

.submit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: end;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px) 0 clamp(26px, 3.5vw, 40px);
}

.submit-hero h1 {
  max-width: 12ch;
}

.submit-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.submit-criteria {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
}

.submit-criteria h2 {
  font-size: 1.65rem;
}

.submit-criteria ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  list-style: none;
}

.submit-criteria li {
  display: flex;
  gap: 10px;
}

.submit-criteria li::before {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--solar);
  content: "";
}

.submit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(20px, 3.5vw, 34px);
  align-items: start;
}

.submit-form,
.review-process {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(92, 50, 12, 0.06);
}

.submit-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 30px);
}

.form-heading {
  margin-bottom: 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.submit-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.submit-form input,
.submit-form select,
.submit-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.submit-form input,
.submit-form select {
  min-height: 48px;
  padding: 0 12px;
}

.submit-form textarea {
  resize: vertical;
  padding: 12px;
  line-height: 1.45;
}

.submit-form input:focus,
.submit-form select:focus,
.submit-form textarea:focus {
  border-color: var(--copper);
  outline: 3px solid rgba(233, 111, 29, 0.15);
}

.checkbox-label {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
}

.checkbox-label input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--copper);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.submit-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.submit-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.review-process {
  padding: 24px;
  position: sticky;
  top: 92px;
}

.review-process h2 {
  font-size: 1.8rem;
}

.review-process ol {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 720;
}

.review-process li::marker {
  color: var(--copper);
  font-weight: 950;
}

.process-note {
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--radius);
  background: #fff6d7;
  color: #66410c;
}

.process-note p {
  margin: 8px 0 0;
  color: #66410c;
}

.explainer-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3.5vw, 34px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.explainer-teaser p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.explainer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: end;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px) 0 clamp(26px, 3.5vw, 40px);
}

.explainer-hero h1 {
  max-width: 12ch;
}

.explainer-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.explainer-summary {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
}

.explainer-summary h2 {
  font-size: 1.65rem;
}

.explainer-summary p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.explainer-summary .button {
  margin-top: 14px;
}

.explainer-install-photo {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto clamp(22px, 3.5vw, 34px);
}

.explainer-install-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: 58% center;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(92, 50, 12, 0.14);
}

.explainer-install-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.explainer-grid,
.history-section,
.savings-section,
.industry-section,
.faq-section,
.regulation-section,
.pros-cons-section {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: start;
}

.explainer-main {
  grid-column: 1 / 2;
}

.explainer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
}

.explainer-main p,
.history-intro p,
.savings-copy p,
.regulation-section > div:first-child p,
.faq-section > div:first-child p {
  color: var(--muted);
}

.explainer-side-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(92, 50, 12, 0.08);
}

.history-intro {
  position: sticky;
  top: 92px;
}

.history-timeline {
  display: grid;
  gap: 14px;
}

.history-timeline article {
  position: relative;
  padding: 22px 22px 22px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.history-timeline article::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 6px;
  border-radius: 0 999px 999px 0;
  background: var(--solar);
  content: "";
}

.history-timeline span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.history-timeline p {
  color: var(--muted);
}

.history-side-card {
  grid-column: 2 / 3;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
}

.history-side-card .spec-list li {
  color: rgba(255, 255, 255, 0.78);
}

.regulation-cards,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.regulation-cards article,
.industry-grid article,
.pros-card,
.cons-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.regulation-cards h3,
.industry-grid h3 {
  margin-top: 12px;
}

.regulation-cards p,
.industry-grid p {
  color: var(--muted);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pros-card {
  border-color: rgba(233, 111, 29, 0.26);
  background: #fff1d1;
}

.cons-card {
  border-color: rgba(167, 95, 23, 0.25);
  background: #fff1c7;
}

.pros-card ul,
.cons-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 720;
}

.savings-section {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.savings-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  margin: 0;
  padding: 18px 20px;
  color: var(--muted);
}

.flow-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: end;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px) 0 clamp(26px, 3.5vw, 40px);
}

.flow-hero h1 {
  max-width: 12ch;
}

.flow-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.flow-photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(92, 50, 12, 0.14);
}

.flow-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.flow-photo-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.flow-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.flow-comparison .flow-photo-card img {
  aspect-ratio: 4 / 3;
}

.view-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(92, 50, 12, 0.84);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.animation-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - var(--content)) / 2));
  padding-left: max(16px, calc((100% - var(--content)) / 2));
  background: linear-gradient(90deg, #fff1d1 0%, #fff1c7 100%);
}

.flow-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flow-board {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(233, 111, 29, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66)),
    radial-gradient(circle at 18% 18%, rgba(246, 189, 47, 0.28), transparent 30%),
    #f9fbf5;
  box-shadow: 0 18px 52px rgba(92, 50, 12, 0.1);
}

.flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 9;
  stroke-dasharray: 18 18;
  opacity: 0.82;
  animation: flowDash 1.6s linear infinite;
}

.path-dc {
  stroke: var(--solar);
}

.path-ac {
  stroke: #1f6f9a;
}

.path-home {
  stroke: #4f7fbb;
}

.flow-pulse {
  fill: var(--solar);
  filter: drop-shadow(0 0 10px rgba(246, 189, 47, 0.8));
}

.pulse-two {
  fill: var(--copper);
  filter: drop-shadow(0 0 10px rgba(233, 111, 29, 0.7));
}

.pulse-three {
  fill: #4f7fbb;
  filter: drop-shadow(0 0 10px rgba(79, 127, 187, 0.65));
}

.flow-node {
  position: absolute;
  z-index: 2;
  width: min(220px, 24%);
  min-height: 172px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(92, 50, 12, 0.12);
}

.flow-node h3 {
  margin-top: 12px;
}

.flow-node p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.node-panel {
  left: 5%;
  top: 84px;
}

.node-inverter {
  left: 39%;
  top: 116px;
}

.node-outlet {
  right: 5%;
  top: 92px;
}

.node-home {
  left: 42%;
  bottom: 48px;
}

.mini-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 70px;
  padding: 7px;
  border: 3px solid #1d2b28;
  background: #142736;
  transform: skewY(-3deg);
}

.mini-panel span {
  background: linear-gradient(135deg, #2c7390, #14354a);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mini-inverter {
  display: grid;
  gap: 5px;
  height: 70px;
  padding: 12px;
  border-radius: 7px;
  background: linear-gradient(135deg, #26312e, #101715);
}

.mini-inverter i {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mini-outlet {
  position: relative;
  display: grid;
  width: 76px;
  height: 70px;
  place-items: center;
  border: 3px solid #26312e;
  border-radius: 10px;
  background: #f7faf5;
}

.mini-outlet span {
  position: absolute;
  top: 24px;
  width: 9px;
  height: 24px;
  border-radius: 999px;
  background: #26312e;
}

.mini-outlet span:first-child {
  left: 26px;
}

.mini-outlet span:last-child {
  right: 26px;
}

.mini-home-load {
  position: relative;
  width: 82px;
  height: 70px;
  border: 3px solid #26312e;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fff1d1);
}

.mini-home-load::before {
  position: absolute;
  left: 18px;
  top: 16px;
  width: 24px;
  height: 38px;
  border-radius: 5px;
  background: var(--copper);
  content: "";
}

.mini-home-load::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--solar);
  content: "";
}

.mini-home-load span {
  position: absolute;
  left: 23px;
  top: 6px;
  width: 14px;
  height: 10px;
  border-radius: 4px 4px 0 0;
  background: #26312e;
}

.flow-board.is-paused * {
  animation-play-state: paused;
}

.flow-board.is-replaying .flow-path {
  animation-name: flowDashReplay;
}

.flow-explainer-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: start;
}

.flow-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.flow-step-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.flow-step-list span {
  display: inline-grid;
  min-width: 48px;
  height: 30px;
  place-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff1c7;
  color: var(--solar-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.flow-step-list h3 {
  margin-top: 14px;
}

.flow-step-list p {
  color: var(--muted);
}

.safety-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 5vw, 54px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.safety-callout p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

@keyframes flowDash {
  from {
    stroke-dashoffset: 72;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes flowDashReplay {
  from {
    stroke-dashoffset: 96;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.footer-note {
  align-self: start;
  max-width: 420px;
}

.footer-note strong {
  color: #fff;
}

.footer-note p {
  margin: 8px 0 0;
}

.privacy-footer-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.privacy-footer-links a,
.privacy-footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: end;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px) 0 clamp(26px, 3.5vw, 40px);
}

.privacy-hero h1 {
  max-width: 11ch;
}

.privacy-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.policy-date {
  margin-top: 18px;
  font-size: 0.95rem;
  font-weight: 900;
}

.privacy-summary,
.privacy-toc,
.privacy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(92, 50, 12, 0.08);
}

.privacy-summary {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.privacy-summary h2,
.privacy-summary p {
  margin: 0;
}

.privacy-summary .button {
  justify-self: start;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 6px;
  padding: 14px;
}

.privacy-toc a {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 850;
  text-decoration: none;
}

.privacy-toc a:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.privacy-content {
  display: grid;
  gap: 16px;
}

.privacy-card {
  padding: clamp(22px, 4vw, 34px);
  scroll-margin-top: 96px;
}

.privacy-card h2,
.privacy-card h3,
.privacy-card p,
.privacy-card ul {
  margin-top: 0;
}

.privacy-card p,
.policy-list {
  color: var(--muted);
}

.privacy-card a {
  color: var(--copper-dark);
  font-weight: 850;
}

.privacy-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.privacy-table > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  background: #fff;
}

.privacy-table > div + div {
  border-top: 1px solid var(--line);
}

.privacy-table span {
  color: var(--muted);
}

.policy-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rights-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.privacy-actions,
.privacy-banner-actions,
.privacy-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

body.privacy-open {
  overflow: hidden;
}

.privacy-banner {
  position: fixed;
  right: clamp(12px, 4vw, 32px);
  bottom: 18px;
  left: clamp(12px, 4vw, 32px);
  z-index: 80;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(92, 50, 12, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.privacy-banner.is-visible {
  display: grid;
}

.privacy-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.privacy-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.privacy-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(92, 50, 12, 0.52);
}

.privacy-modal-backdrop.is-open {
  display: grid;
}

.privacy-modal {
  width: min(720px, 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(92, 50, 12, 0.18);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  outline: none;
}

.privacy-modal-header {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.privacy-modal-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.privacy-close {
  flex: 0 0 auto;
}

.privacy-choice-list {
  display: grid;
  gap: 10px;
}

.privacy-choice {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.privacy-choice input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--copper);
}

.privacy-choice strong {
  display: block;
  color: var(--ink);
}

.privacy-choice span {
  color: var(--muted);
}

.privacy-choice.is-required {
  background: #fff1c7;
}

.privacy-opt-out {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(233, 111, 29, 0.22);
  border-radius: var(--radius);
  background: #fff1d1;
}

.privacy-opt-out p,
.privacy-modal-status {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.privacy-modal-status {
  min-height: 1.4em;
  margin: 12px 0;
  font-weight: 850;
}

.brand-lab-hero {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px) 0 clamp(24px, 3.5vw, 34px);
}

.brand-lab-hero h1 {
  max-width: 12ch;
}

.brand-lab-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.logo-concept-section {
  padding-top: 0;
}

.logo-concept-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.logo-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(92, 50, 12, 0.08);
}

.logo-card.is-selected {
  border-color: rgba(233, 111, 29, 0.55);
  box-shadow: 0 18px 50px rgba(233, 111, 29, 0.18);
}

.logo-card h3,
.logo-card p {
  margin: 0;
}

.logo-card p:not(.eyebrow) {
  color: var(--muted);
}

.logo-preview {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.logo-preview svg {
  width: min(150px, 72%);
  height: auto;
}

.logo-preview.warm {
  background: linear-gradient(135deg, #fff1a7, #f08a24);
}

.logo-preview.sky {
  background: linear-gradient(135deg, #dff3ff, #fff1c7);
}

.logo-preview.copper {
  background: linear-gradient(135deg, #fff7e8, #f2b477);
}

.logo-preview.dark {
  background: linear-gradient(135deg, #5b2b12, #20160d);
}

@media (max-width: 1040px) {
  .product-grid,
  .recommendation-list,
  .affiliate-grid,
  .seo-topic-grid,
  .logo-concept-grid,
  .calculator,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calculator .estimate {
    grid-column: 1 / -1;
  }

  .states-hero,
  .state-workbench,
  .pipeline-section,
  .industry-overview-section,
  .component-section,
  .manufacturer-section,
  .submit-hero,
  .submit-layout,
  .explainer-teaser,
  .explainer-hero,
  .explainer-grid,
  .history-section,
  .savings-section,
  .industry-section,
  .faq-section,
  .regulation-section,
  .pros-cons-section,
  .privacy-hero,
  .privacy-layout,
  .flow-hero,
  .flow-explainer-grid,
  .safety-callout {
    grid-template-columns: 1fr;
  }

  .privacy-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .component-media .product-photo {
    min-height: 230px;
    aspect-ratio: 21 / 9;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  body.js-nav-ready .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
  }

  body.js-nav-ready .mobile-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 4px;
  }

  body.js-nav-ready .primary-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.98);
    box-shadow: 0 16px 40px rgba(92, 50, 12, 0.12);
  }

  body.js-nav-ready .site-header.nav-open .primary-nav {
    display: grid;
  }

  body.js-nav-ready .primary-nav a {
    min-height: 44px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf7;
    white-space: normal;
  }

  body.js-nav-ready .primary-nav a[aria-current="page"] {
    border-color: rgba(233, 111, 29, 0.42);
    background: rgba(255, 189, 46, 0.16);
  }

  body.mobile-menu-open {
    overflow-x: hidden;
  }

  .hero {
    min-height: min(560px, calc(100svh - 142px));
  }

  .hero-panel-glint-left {
    left: 42%;
  }

  .hero-panel-glint-right {
    left: 65%;
  }

  .hero-content {
    width: min(590px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 30px;
  }

  h1 {
    max-width: 10ch;
  }

  .intro-grid,
  .review-layout,
  .guide-section,
  .editorial-section,
  .sources-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .privacy-banner {
    grid-template-columns: 1fr;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .states-hero {
    padding-top: 44px;
  }

  .status-legend {
    justify-content: flex-start;
  }

  .state-detail {
    min-height: 0;
  }

  .review-process {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

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

  .cart-button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .mobile-nav-toggle {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  body.js-nav-ready .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  body.js-nav-ready .primary-nav {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 82px);
  }

  .hero {
    min-height: 520px;
  }

  .hero-sun-bloom {
    top: -10%;
    right: -30%;
    width: 90vw;
  }

  .hero-panel-glint {
    width: 48%;
    height: 13%;
    filter: blur(9px);
  }

  .hero-panel-glint-left {
    display: none;
  }

  .hero-panel-glint-right {
    top: 50%;
    left: 48%;
  }

  .hero-content {
    padding-bottom: 24px;
  }

  .hero-stats {
    gap: 8px;
  }

  .hero-stats div {
    padding: 10px;
  }

  .hero-stats dt {
    font-size: 1.2rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(32, 22, 13, 0.82), rgba(32, 22, 13, 0.36)),
      linear-gradient(0deg, rgba(32, 22, 13, 0.42), rgba(32, 22, 13, 0.12));
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-actions,
  .newsletter div,
  .privacy-table > div,
  .rights-grid,
  .privacy-opt-out,
  .privacy-banner-actions,
  .privacy-modal-actions,
  .privacy-toc {
    display: grid;
    grid-template-columns: 1fr;
  }

  .history-intro {
    position: static;
  }

  .history-side-card {
    grid-column: auto;
  }

  .button {
    width: 100%;
  }

  .signal-grid,
  .industry-card-grid,
  .product-grid,
  .recommendation-list,
  .affiliate-grid,
  .seo-topic-grid,
  .logo-concept-grid,
  .calculator,
  .article-grid,
  .status-counts {
    grid-template-columns: 1fr;
  }

  .states-hero-copy h1 {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .submit-hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .explainer-hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .explainer-install-photo img {
    aspect-ratio: 4 / 3;
  }

  .component-body {
    padding: 18px;
  }

  .component-media .product-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .detect-panel,
  .state-detail {
    padding: 20px;
  }

  .state-map-wrap {
    padding: 12px;
  }

  .state-map {
    min-width: 700px;
    padding: 10px;
  }

  .state-map-svg {
    min-width: 680px;
  }

  .state-label {
    font-size: 9px;
  }

  .state-label-small {
    font-size: 7px;
  }

  .state-map-fallback {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .state-facts {
    grid-template-columns: 1fr;
  }

  .stage-card {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .stage-number {
    width: 36px;
    height: 36px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .regulation-cards,
  .industry-grid,
  .pros-cons-grid,
  .flow-step-list,
  .flow-comparison {
    grid-template-columns: 1fr;
  }

  .submit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .flow-board {
    display: grid;
    gap: 14px;
    min-height: 0;
    padding: 16px;
  }

  .flow-lines {
    display: none;
  }

  .flow-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: 0;
  }

  .flow-node::after {
    display: block;
    margin-top: 14px;
    color: var(--copper-dark);
    font-size: 1.4rem;
    font-weight: 950;
    content: "↓";
  }

  .flow-node:last-child::after {
    display: none;
  }

  .product-description {
    min-height: 0;
  }

  .calculator-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

@media (max-height: 760px) {
  .hero-stats {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .flow-pulse {
    display: none;
  }

  .flow-path {
    stroke-dasharray: none;
  }
}
