@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-sans-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --night-ink: #07090d;
  --graphite: #15171a;
  --ivory: #f5f1e8;
  --paper: #ece9e1;
  --sky-blue: #82a9d2;
  --deep-blue: #233a62;
  --solar-gold: #f3d897;
  --sunset-coral: #c77d5e;
  --muted: #8d9095;
  --hairline-dark: rgb(21 23 26 / 18%);
  --hairline-light: rgb(245 241 232 / 18%);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --page-width: 1200px;
  --reading-width: 680px;
  font-family: "Geist", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night-ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--graphite);
  background: var(--paper);
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body[data-theme="dark"] {
  color: var(--ivory);
  background: var(--night-ink);
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

::selection {
  color: var(--graphite);
  background: var(--solar-gold);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 8px 16px;
  color: var(--graphite);
  background: var(--ivory);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 160ms var(--ease-out);
}

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

:focus-visible {
  outline: 2px solid var(--solar-gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  pointer-events: none;
}

.site-header__inner {
  width: min(calc(100% - 32px), var(--page-width));
  min-height: 64px;
  margin: 16px auto 0;
  padding: 8px 8px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ivory);
  background: rgb(7 9 13 / 58%);
  border: 1px solid var(--hairline-light);
  border-radius: 999px;
  backdrop-filter: blur(24px) saturate(120%);
  pointer-events: auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.24em;
  font-size: 14px;
  font-weight: 600;
}

.wordmark img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  min-height: 44px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: rgb(245 241 232 / 72%);
  text-decoration: none;
  font-size: 14px;
  font-weight: 550;
  transition:
    color 160ms var(--ease-out),
    background-color 160ms var(--ease-out),
    transform 120ms var(--ease-out);
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  color: var(--ivory);
  background: rgb(245 241 232 / 10%);
}

.primary-nav a:active {
  transform: scale(0.97);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--ivory);
  background: rgb(245 241 232 / 10%);
  cursor: pointer;
  transition: transform 120ms var(--ease-out);
}

.nav-toggle:active {
  transform: scale(0.97);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 16px;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 200ms var(--ease-out), opacity 160ms var(--ease-out);
}

.nav-toggle {
  position: relative;
}

.nav-toggle::before {
  transform: translate(-50%, -4px);
}

.nav-toggle::after {
  transform: translate(-50%, 4px);
}

.nav-toggle span {
  transform: translate(-50%, 0);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translate(-50%, 0) rotate(-45deg);
}

.button,
.button-link {
  min-height: 44px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 120ms var(--ease-out),
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    opacity 180ms var(--ease-out);
}

.button:active,
.button-link:active {
  transform: scale(0.97);
}

.button--light {
  color: var(--graphite);
  background: var(--ivory);
}

.button--dark {
  color: var(--ivory);
  background: var(--graphite);
}

.button--ghost {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.button[disabled],
.button-link[aria-disabled="true"] {
  opacity: 0.48;
  pointer-events: none;
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display-title {
  max-width: var(--reading-width);
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 560;
}

.section-title {
  max-width: var(--reading-width);
  margin-bottom: 24px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 560;
}

.lede {
  max-width: var(--reading-width);
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.4;
  color: color-mix(in srgb, currentColor 72%, transparent);
}

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

.solar-hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  color: var(--ivory);
  background: var(--night-ink);
}

.sky-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 54% at 50% 90%, rgb(243 216 151 / 48%) 0%, rgb(199 125 94 / 22%) 25%, transparent 66%),
    radial-gradient(ellipse 90% 75% at 50% 25%, rgb(130 169 210 / 46%) 0%, transparent 68%),
    linear-gradient(180deg, #1d3155 0%, #527ca8 52%, #a4c7df 79%, #e9dfc4 100%);
  transition: filter 420ms var(--ease-out), background-color 420ms var(--ease-out);
}

.sky-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.sky-stage[data-sky="dawn"] {
  background:
    radial-gradient(ellipse 72% 48% at 18% 78%, rgb(243 216 151 / 72%) 0%, rgb(199 125 94 / 40%) 30%, transparent 70%),
    radial-gradient(ellipse 65% 65% at 82% 18%, rgb(130 169 210 / 48%) 0%, transparent 74%),
    linear-gradient(180deg, #24385d 0%, #6d88ad 50%, #d2a889 79%, #f0dfbd 100%);
}

.sky-stage[data-sky="noon"] {
  background:
    radial-gradient(ellipse 64% 55% at 50% 82%, rgb(245 241 232 / 88%) 0%, transparent 68%),
    radial-gradient(ellipse 86% 70% at 50% 22%, rgb(130 169 210 / 52%) 0%, transparent 72%),
    linear-gradient(180deg, #5c83b4 0%, #9dbde0 60%, #eef0e9 100%);
}

.sky-stage[data-sky="sunset"] {
  background:
    radial-gradient(ellipse 68% 46% at 84% 77%, rgb(243 216 151 / 84%) 0%, rgb(199 125 94 / 58%) 34%, transparent 72%),
    radial-gradient(ellipse 80% 65% at 22% 20%, rgb(35 58 98 / 80%) 0%, transparent 76%),
    linear-gradient(180deg, #1e3153 0%, #5f7091 48%, #c87e5e 76%, #f0c98a 100%);
}

.sky-stage[data-sky="twilight"] {
  background:
    radial-gradient(ellipse 60% 38% at 75% 86%, rgb(199 125 94 / 38%) 0%, transparent 72%),
    radial-gradient(ellipse 90% 75% at 30% 22%, rgb(35 58 98 / 72%) 0%, transparent 72%),
    linear-gradient(180deg, #0b1323 0%, #24365d 55%, #6f5872 82%, #b17a67 100%);
}

.sky-stage[data-sky="night"] {
  background:
    radial-gradient(ellipse 64% 44% at 50% 88%, rgb(35 58 98 / 24%) 0%, transparent 72%),
    linear-gradient(180deg, #030509 0%, #070d17 60%, #111b2d 100%);
}

.horizon {
  position: absolute;
  right: 0;
  bottom: 12%;
  left: 0;
  height: 1px;
  background: rgb(245 241 232 / 44%);
  box-shadow: 0 0 30px rgb(243 216 151 / 20%);
}

.sun {
  --sun-x: 50%;
  --sun-y: 30%;
  position: absolute;
  left: var(--sun-x);
  top: var(--sun-y);
  width: clamp(34px, 5vw, 58px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ivory);
  box-shadow:
    0 0 18px rgb(245 241 232 / 82%),
    0 0 48px rgb(243 216 151 / 52%),
    0 0 112px rgb(199 125 94 / 26%);
  transform: translate(-50%, -50%);
  transition:
    left 520ms var(--ease-in-out),
    top 520ms var(--ease-in-out),
    box-shadow 420ms var(--ease-out),
    background-color 420ms var(--ease-out);
}

.star-field {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image:
    radial-gradient(circle at 14% 24%, rgb(245 241 232 / 90%) 0 1px, transparent 1.5px),
    radial-gradient(circle at 28% 13%, rgb(245 241 232 / 70%) 0 1px, transparent 1.5px),
    radial-gradient(circle at 48% 21%, rgb(245 241 232 / 62%) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 16%, rgb(245 241 232 / 78%) 0 1px, transparent 1.5px),
    radial-gradient(circle at 84% 30%, rgb(245 241 232 / 66%) 0 1px, transparent 1.5px),
    radial-gradient(circle at 61% 39%, rgb(245 241 232 / 58%) 0 1px, transparent 1.5px),
    radial-gradient(circle at 36% 44%, rgb(245 241 232 / 50%) 0 1px, transparent 1.5px);
  transition: opacity 420ms var(--ease-out);
}

.sky-stage[data-sky="twilight"] .star-field {
  opacity: 0.35;
}

.sky-stage[data-sky="night"] .star-field {
  opacity: 0.92;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: 112px 24px 48px;
  display: grid;
  place-items: center;
}

.game-shell {
  width: min(100%, 760px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.game-kicker {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.game-title {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 560;
}

.game-subtitle {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgb(245 241 232 / 74%);
  font-size: 18px;
  line-height: 1.55;
}

.game-timer {
  position: absolute;
  top: 104px;
  right: max(24px, calc((100vw - var(--page-width)) / 2));
  min-width: 56px;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.game-controls {
  width: min(100%, 560px);
  margin-top: auto;
  padding-top: 26vh;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.time-guess {
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.time-label {
  color: rgb(245 241 232 / 68%);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.time-slider {
  width: 100%;
  height: 44px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}

.time-slider::-webkit-slider-runnable-track {
  height: 1px;
  background: rgb(245 241 232 / 55%);
}

.time-slider::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  margin-top: -13px;
  appearance: none;
  border: 1px solid rgb(245 241 232 / 80%);
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 0 24px rgb(243 216 151 / 46%);
}

.time-slider::-moz-range-track {
  height: 1px;
  background: rgb(245 241 232 / 55%);
}

.time-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 1px solid rgb(245 241 232 / 80%);
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 0 24px rgb(243 216 151 / 46%);
}

.game-result {
  width: min(100%, 620px);
  display: grid;
  gap: 24px;
}

.result-comparison {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 24px;
}

.result-rule {
  width: 1px;
  height: 72px;
  background: rgb(245 241 232 / 24%);
}

.result-label {
  margin-bottom: 8px;
  color: rgb(245 241 232 / 62%);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.result-time {
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.result-score {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.game-status {
  min-height: 24px;
  color: rgb(245 241 232 / 70%);
}

.hero-proof {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
  color: rgb(245 241 232 / 58%);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof span + span::before {
  content: "·";
  margin-right: 16px;
}

.section {
  padding: 96px 0;
}

.section--dark {
  color: var(--ivory);
  background: var(--night-ink);
}

.section--paper {
  color: var(--graphite);
  background: var(--paper);
}

.section--sky {
  color: var(--graphite);
  background: #a9c7df;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.product-captures {
  min-height: 680px;
  position: relative;
}

.product-captures img {
  position: absolute;
  width: min(74%, 420px);
  border-radius: 32px;
  box-shadow: 0 30px 90px rgb(7 9 13 / 28%);
}

.product-captures img:nth-child(1) {
  top: 0;
  right: 0;
  z-index: 2;
}

.product-captures img:nth-child(2) {
  bottom: 0;
  left: 0;
  z-index: 1;
}

.metric {
  margin: 0;
  font-size: clamp(60px, 10vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 520;
  font-variant-numeric: tabular-nums;
}

.metric-caption {
  max-width: 500px;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.45;
}

.tagline-reveal {
  max-width: 900px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 520;
}

.tagline-reveal span {
  color: color-mix(in srgb, currentColor 28%, transparent);
  transition: color 760ms var(--ease-out);
}

.tagline-reveal span.is-visible {
  color: currentColor;
}

.time-system-list {
  border-top: 1px solid var(--hairline-dark);
}

.time-system {
  padding: 32px 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1fr);
  gap: 32px;
  border-bottom: 1px solid var(--hairline-dark);
}

.time-system h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 560;
}

.time-system p {
  max-width: 620px;
  margin: 0;
  color: rgb(21 23 26 / 68%);
  font-size: 18px;
}

.reminder-example {
  padding: 32px;
  display: grid;
  gap: 16px;
  color: var(--ivory);
  background: var(--graphite);
  border-radius: 24px;
}

.reminder-row {
  min-height: 64px;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--hairline-light);
}

.reminder-row:last-child {
  border-bottom: 0;
}

.reminder-row strong {
  display: block;
  font-size: 18px;
  font-weight: 560;
}

.reminder-row span {
  color: rgb(245 241 232 / 58%);
  font-size: 14px;
}

.reminder-row time {
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}

.faq {
  max-width: 840px;
}

.faq details {
  border-top: 1px solid var(--hairline-dark);
}

.faq details:last-child {
  border-bottom: 1px solid var(--hairline-dark);
}

.faq summary {
  min-height: 64px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 560;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 350;
  transition: transform 180ms var(--ease-out);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 680px;
  padding-bottom: 24px;
  color: rgb(21 23 26 / 68%);
}

.page-hero {
  min-height: 72svh;
  padding: 144px 0 80px;
  display: flex;
  align-items: end;
  color: var(--ivory);
  background: var(--night-ink);
}

.page-copy {
  max-width: 760px;
}

.page-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 560;
}

.page-copy p {
  max-width: 680px;
  color: rgb(245 241 232 / 70%);
  font-size: 20px;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 64px;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 560;
}

.prose h3 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.prose p,
.prose li {
  color: rgb(21 23 26 / 72%);
  font-size: 18px;
  line-height: 1.7;
}

.prose a {
  font-weight: 560;
}

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

.press-asset {
  padding: 24px;
  color: var(--ivory);
  background: var(--graphite);
  border-radius: 24px;
}

.press-asset img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}

.press-asset p {
  margin: 16px 0 0;
  color: rgb(245 241 232 / 62%);
}

.site-footer {
  padding: 64px 0 40px;
  color: var(--ivory);
  background: var(--night-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.footer-links a {
  color: rgb(245 241 232 / 68%);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-note {
  margin-top: 48px;
  color: rgb(245 241 232 / 42%);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(32px);
  transition:
    opacity 760ms var(--ease-out),
    filter 760ms var(--ease-out),
    transform 760ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

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

@media (max-width: 860px) {
  .site-header__inner {
    margin-top: 8px;
  }

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

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 8px;
    display: grid;
    color: var(--ivory);
    background: rgb(7 9 13 / 92%);
    border: 1px solid var(--hairline-light);
    border-radius: 24px;
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 160ms var(--ease-out),
      transform 180ms var(--ease-out);
  }

  .primary-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .primary-nav a {
    width: 100%;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-captures {
    min-height: 600px;
  }

  .time-system {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .press-assets {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .wordmark {
    letter-spacing: 0.16em;
  }

  .site-header__inner {
    width: calc(100% - 16px);
  }

  .hero-content {
    padding-inline: 16px;
  }

  .game-timer {
    top: 88px;
    right: 16px;
  }

  .game-controls {
    padding-top: 22vh;
  }

  .result-comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .result-rule {
    width: 100%;
    height: 1px;
  }

  .hero-proof {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .page-shell {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .product-captures {
    min-height: 520px;
  }

  .product-captures img {
    width: 78%;
    border-radius: 24px;
  }

  .reminder-example {
    padding: 24px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button-link:hover {
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    filter: none;
    transform: none;
    transition: opacity 160ms ease-out;
  }

  .sun {
    transition: opacity 160ms ease-out;
  }
}
