:root {
  color-scheme: light;
  --cream: #f6f1e8;
  --paper: #fbf8f2;
  --ink: #201e1a;
  --muted: #6f6a61;
  --coral: #d8704a;
  --coral-deep: #b95538;
  --sage: #6f9487;
  --sky: #9dbed0;
  --night: #1a2b31;
  --line: rgba(32, 30, 26, 0.15);
  --line-strong: rgba(32, 30, 26, 0.28);
  --shadow: 0 24px 70px rgba(47, 39, 29, 0.11);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --sans: "Avenir Next", Avenir, "Century Gothic", ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 95% 4%, rgba(157, 190, 208, 0.4), transparent 28rem),
    radial-gradient(circle at 6% 34%, rgba(216, 112, 74, 0.1), transparent 22rem),
    var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.shell {
  width: min(100% - 32px, 1160px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 730;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 11px;
}

.header-note {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  gap: 40px;
  padding-block: 58px 76px;
  overflow: hidden;
}

.hero-copy,
.proof-panel {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index {
  margin: 0 0 18px;
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.results-intro h2,
.cta-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.15rem, 12vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.89;
}

.hero h1 em {
  display: block;
  color: var(--coral);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: #4d4942;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.55;
}

.hero-reassurance {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.proof-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(32, 30, 26, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(251, 248, 242, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.form-heading {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--night);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
}

.form-heading h2 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.form-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.field {
  position: relative;
  min-width: 0;
}

.field + .field,
.date-grid {
  margin-top: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.045em;
}

.field input {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input:hover {
  border-color: rgba(32, 30, 26, 0.52);
}

.field input:focus {
  border-color: var(--coral);
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(216, 112, 74, 0.16);
}

.field input[aria-invalid="true"] {
  border-color: var(--coral-deep);
}

.combobox-wrap {
  position: relative;
}

.combobox-wrap input {
  padding-right: 42px;
}

.field-status {
  position: absolute;
  top: 20px;
  right: 16px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--line-strong);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.suggestions {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  z-index: 20;
  max-height: 270px;
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(32, 30, 26, 0.16);
  list-style: none;
}

.suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.suggestion:hover,
.suggestion.is-active {
  background: rgba(157, 190, 208, 0.25);
}

.suggestion strong {
  display: block;
  font-size: 14px;
}

.suggestion span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.suggestion code {
  color: var(--muted);
  font-family: inherit;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.field-hint,
.field-error {
  margin: 6px 2px 0;
  font-size: 11px;
}

.field-hint {
  color: var(--muted);
}

.field-error {
  min-height: 1em;
  color: var(--coral-deep);
  font-weight: 700;
}

.date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.date-grid .field {
  margin-top: 0;
}

.date-hint {
  margin-top: 2px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.primary-button {
  padding: 15px 20px;
  background: var(--night);
  color: white;
  box-shadow: 0 8px 24px rgba(26, 43, 49, 0.2);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:active,
.secondary-button:active {
  transform: translateY(0);
}

.primary-button:disabled,
.secondary-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.submit-button {
  width: 100%;
  margin-top: 20px;
}

.button-arrow {
  font-size: 21px;
}

.hero-orbit {
  position: absolute;
  top: 48px;
  right: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(111, 148, 135, 0.19);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(111, 148, 135, 0.25);
  border-radius: 50%;
  content: "";
}

.hero-orbit::before {
  inset: 48px;
}

.hero-orbit::after {
  inset: 112px;
}

.orbit-sphere {
  position: absolute;
  top: 174px;
  left: 145px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 22%, #fff 0 4%, #f3c4b0 10%, var(--coral) 34%, #bb5939 76%);
  box-shadow: 0 40px 50px rgba(185, 85, 56, 0.25);
}

.orbit-label {
  position: absolute;
  display: flex;
  z-index: 1;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(32, 30, 26, 0.16);
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.76);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.orbit-label strong {
  color: var(--ink);
}

.orbit-label-one {
  top: 92px;
  left: 48px;
}

.orbit-label-two {
  right: 28px;
  bottom: 130px;
}

.status-panel {
  padding-block: 10px 72px;
}

.status-card {
  display: flex;
  max-width: 660px;
  align-items: flex-start;
  gap: 17px;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid rgba(111, 148, 135, 0.36);
  border-radius: var(--radius-md);
  background: rgba(251, 248, 242, 0.82);
}

.status-pulse {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 5px;
  border: 3px solid rgba(111, 148, 135, 0.25);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: spin 750ms linear infinite;
}

.status-panel.is-error .status-card {
  border-color: rgba(185, 85, 56, 0.35);
}

.status-panel.is-error .status-pulse {
  border: 0;
  background: var(--coral);
  animation: none;
}

.status-card h2 {
  margin: 0;
  font-size: 16px;
}

.status-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.results {
  padding-top: 74px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.results-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.results-intro h2 {
  max-width: 850px;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
}

.results-deck {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.result-stamp {
  display: none;
  width: 132px;
  height: 132px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 112, 74, 0.5);
  border-radius: 50%;
  color: var(--coral-deep);
  text-align: center;
  transform: rotate(7deg);
}

.result-stamp span {
  position: absolute;
  margin-top: -82px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.result-stamp strong {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.05;
}

.proof-layout {
  display: grid;
  gap: 22px;
}

.chart-card,
.finding-panel,
.winter-card,
.share-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.chart-card {
  min-width: 0;
  padding: 22px 14px 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 55px rgba(32, 30, 26, 0.07);
}

.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0 8px 18px;
}

.chart-place {
  margin: 0 0 4px;
  color: var(--coral-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chart-header h3,
.finding-panel h3,
.winter-card h3,
.share-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.flare-key {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.flare-key span {
  width: 16px;
  height: 12px;
  border: 1px solid rgba(216, 112, 74, 0.36);
  border-radius: 3px;
  background: rgba(216, 112, 74, 0.15);
}

.chart-stack {
  min-height: 690px;
}

.metric-chart {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.metric-chart + .metric-chart {
  margin-top: 1px;
}

.chart-grid-line {
  stroke: rgba(32, 30, 26, 0.09);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.chart-flare-band {
  fill: rgba(216, 112, 74, 0.13);
}

.chart-flare-edge {
  stroke: rgba(216, 112, 74, 0.42);
  stroke-width: 1;
  stroke-dasharray: 3 3;
  vector-effect: non-scaling-stroke;
}

.chart-path {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.chart-area {
  opacity: 0.12;
}

.chart-label {
  fill: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
}

.chart-unit,
.chart-value,
.chart-date-label,
.chart-axis-tick {
  fill: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
}

.chart-axis-tick {
  font-size: 7.5px;
  font-variant-numeric: tabular-nums;
}

.chart-insufficient-marker {
  stroke: var(--muted);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.chart-value {
  fill: var(--ink);
  font-weight: 750;
}

.chart-date-label {
  font-size: 8px;
}

.chart-dot {
  stroke: white;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.chart-footnote {
  margin: 14px 8px 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.finding-panel {
  padding: 26px 22px;
  background: var(--night);
  color: white;
}

.finding-panel .section-index {
  color: var(--sky);
}

.findings-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: findings;
}

.finding-item {
  position: relative;
  padding: 19px 0 19px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  counter-increment: findings;
}

.finding-item::before {
  position: absolute;
  top: 21px;
  left: 0;
  color: var(--coral);
  content: "0" counter(findings);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.finding-item h4 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: -0.015em;
}

.finding-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.71);
  font-size: 13px;
  line-height: 1.55;
}

.finding-item time {
  display: block;
  margin-top: 8px;
  color: var(--sky);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finding-caveat {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.5;
}

.after-proof {
  display: grid;
  gap: 22px;
  padding-block: 22px 76px;
}

.winter-card,
.share-card {
  padding: 26px 22px;
}

.winter-card {
  background: rgba(157, 190, 208, 0.2);
}

.winter-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.winter-chip {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(26, 43, 49, 0.18);
  border-radius: 999px;
  color: var(--night);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.winter-message {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--night);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.winter-detail {
  max-width: 680px;
  margin: 14px 0 0;
  color: #42535a;
  font-size: 13px;
}

.source-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.source-note a {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.share-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--cream);
}

.share-card p:not(.section-index):not(.action-status) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.secondary-button {
  width: 100%;
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
}

.action-status {
  min-height: 1em;
  margin: 8px 2px 0;
  color: var(--muted);
  font-size: 10px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: white;
}

.cta-section::after {
  position: absolute;
  right: -150px;
  bottom: -220px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(157, 190, 208, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(157, 190, 208, 0.05), 0 0 0 140px rgba(157, 190, 208, 0.03);
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  padding-block: 64px;
}

.eyebrow.light {
  color: var(--sky);
}

.cta-copy h2 {
  max-width: 720px;
  font-size: clamp(3rem, 9vw, 6.4rem);
}

.cta-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.coral-button {
  margin-top: 28px;
  background: var(--coral);
  color: var(--ink);
  box-shadow: none;
}

.coral-button:hover {
  background: #e4815d;
}

.install-card {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.install-number {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--night);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.install-card h3 {
  margin: 0;
  font-size: 20px;
}

.install-card ol {
  margin: 18px 0 0;
  padding-left: 20px;
}

.install-card li {
  padding-left: 5px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.install-card li + li {
  margin-top: 13px;
}

.install-card strong,
.install-card em {
  color: white;
}

.restart-row {
  padding-block: 30px 52px;
  text-align: center;
}

.text-button {
  padding: 8px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.text-button:hover {
  color: var(--ink);
}

.site-footer {
  padding-block: 38px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-inner p {
  max-width: 770px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.footer-inner a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 50;
  max-width: 430px;
  margin-left: auto;
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 35px rgba(32, 30, 26, 0.24);
  font-size: 12px;
  font-weight: 700;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (min-width: 700px) {
  .shell {
    width: min(100% - 64px, 1160px);
  }

  .site-header {
    min-height: 96px;
  }

  .hero {
    padding-block: 84px 108px;
  }

  .proof-panel {
    max-width: 670px;
    padding: 30px;
  }

  .chart-card {
    padding: 28px 24px 22px;
  }

  .finding-panel,
  .winter-card,
  .share-card {
    padding: 32px;
  }

  .result-stamp {
    display: flex;
  }

  .after-proof {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr);
  }

  .footer-inner {
    grid-template-columns: 220px 1fr;
    align-items: center;
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.72fr);
    padding-block: 92px;
  }

  .toast {
    left: auto;
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.72fr);
    align-items: end;
    gap: 70px;
    min-height: calc(100vh - 96px);
  }

  .hero h1 {
    font-size: clamp(5.2rem, 8.6vw, 7.4rem);
  }

  .proof-panel {
    padding: 28px;
  }

  .hero-orbit {
    right: -145px;
  }

  .proof-layout {
    grid-template-columns: minmax(0, 1.8fr) minmax(285px, 0.72fr);
    align-items: stretch;
  }

  .finding-panel {
    display: flex;
    flex-direction: column;
  }

  .finding-caveat {
    margin-top: auto;
  }
}

@media (max-width: 540px) {
  .header-note {
    max-width: 90px;
    text-align: right;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .proof-panel {
    margin-inline: -4px;
    padding: 20px 16px;
    border-radius: 25px;
  }

  .date-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .date-grid .field + .field {
    margin-top: 12px;
  }

  .results {
    padding-top: 54px;
  }

  .results-intro {
    margin-bottom: 32px;
  }

  .results-intro h2 {
    font-size: 3.1rem;
  }

  .chart-header {
    display: block;
  }

  .flare-key {
    margin-top: 12px;
  }

  .metric-chart {
    min-width: 590px;
  }

  .chart-stack {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--line-strong) transparent;
  }

  .chart-footnote::after {
    content: " Swipe charts sideways to see the full 90 days.";
  }

  .winter-topline {
    display: block;
  }

  .winter-chip {
    display: inline-block;
    margin-bottom: 18px;
  }
}

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

@media print {
  .site-header,
  .hero,
  .status-panel,
  .share-card,
  .cta-section,
  .restart-row,
  .site-footer {
    display: none !important;
  }

  .results {
    padding: 20px;
  }

  .proof-layout {
    display: block;
  }

  .finding-panel {
    margin-top: 20px;
  }
}
