:root {
  color-scheme: light;
  --orange: #ff6808;
  --orange-deep: #ec4400;
  --gold: #ffbd18;
  --cream: #fff8e8;
  --ink: #160b0a;
  --purple: #7437f5;
  --purple-deep: #4a13c5;
  --white: #fff;
  --muted: #725f59;
  --line: rgba(22, 11, 10, 0.14);
  --radius: 30px;
  --shadow: 0 28px 80px rgba(111, 34, 0, 0.18);
  font-family: "Arial Rounded MT Bold", "Avenir Next", Avenir, ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1500px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.25rem 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark__like {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ff9c16, var(--orange-deep));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.wordmark__hearts {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 0.57em;
  height: 1.03em;
  margin: 0 0.02em;
  transform: translateY(0.01em);
}

.wordmark__hearts span {
  display: block;
  flex: 0 0 0.82em;
  width: 100%;
  height: 0.82em;
  font-size: 0.38em;
  line-height: 0.82;
  text-align: center;
}

.wordmark__hearts span:nth-child(1) { color: #d93a00; }
.wordmark__hearts span:nth-child(2) { color: #ff6808; }
.wordmark__hearts span:nth-child(3) { color: #ffac0c; }

.wordmark__liker {
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 2vw, 2rem);
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
  text-decoration-color: transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  text-decoration-color: var(--orange);
}

.release-pill {
  padding: 0.65rem 0.95rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(540px, 1.17fr);
  align-items: center;
  min-height: min(850px, calc(100svh - 6rem));
  padding-left: max(1.5rem, calc((100vw - 1500px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.75), transparent 20rem),
    linear-gradient(125deg, #ffbd18 0%, #ff8b08 34%, #ff5b03 68%, #eb3b00 100%);
  border-radius: 0 0 clamp(38px, 8vw, 96px) clamp(38px, 8vw, 96px);
  overflow: hidden;
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding: clamp(4rem, 7vw, 7.5rem) clamp(1.5rem, 4vw, 4rem) clamp(4rem, 7vw, 7rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: clamp(0.72rem, 1.3vw, 0.88rem);
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4rem, 8.2vw, 9.5rem);
  font-weight: 950;
  letter-spacing: -0.085em;
  line-height: 0.82;
}

.hero h1 em {
  display: block;
  color: var(--white);
  font-style: normal;
  text-shadow: 0.04em 0.055em 0 rgba(114, 28, 0, 0.25);
}

.hero__lede {
  max-width: 660px;
  margin: 2rem 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.4rem);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-3px) rotate(-0.5deg);
}

.button:focus-visible {
  outline: 4px solid var(--purple);
  outline-offset: 3px;
}

.button--dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 0 rgba(22, 11, 10, 0.22);
}

.button--ghost {
  border-color: rgba(22, 11, 10, 0.6);
  background: rgba(255, 255, 255, 0.16);
}

.button--light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 0 rgba(22, 11, 10, 0.2);
}

.microcopy {
  margin: 1.35rem 0 0;
  font-size: 0.83rem;
  font-weight: 750;
}

.hero__art {
  position: relative;
  align-self: stretch;
  min-height: 660px;
}

.hero__art::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 22%;
  background: linear-gradient(90deg, #ff7c05, transparent);
  content: "";
  pointer-events: none;
}

.hero__art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.score-card {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  max-width: min(300px, 42%);
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transform: rotate(-3deg);
}

.score-card span,
.score-card small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.score-card strong {
  font-size: clamp(1.2rem, 2.7vw, 2.7rem);
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.score-card--likes {
  top: 12%;
  left: 3%;
}

.score-card--comments {
  right: 5%;
  bottom: 11%;
  transform: rotate(2.5deg);
}

.score-card--comments strong {
  margin: 0.35rem 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.2;
}

.stat-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1150px, calc(100% - 3rem));
  margin: clamp(-3rem, -4vw, -2rem) auto 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: 12px 12px 0 var(--ink);
}

.stat-strip div {
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  text-align: center;
}

.stat-strip div + div {
  border-left: 2px solid var(--ink);
}

.stat-strip strong {
  color: var(--orange-deep);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.stat-strip span {
  margin-top: 0.5rem;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(6rem, 11vw, 11rem) max(1.5rem, calc((100vw - 1380px) / 2));
}

.section--cream {
  background: var(--cream);
}

.section--orange {
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 219, 92, 0.75), transparent 26rem),
    var(--orange);
}

.section--black {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  max-width: 950px;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-heading h2,
.privacy-lockup h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.8rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.section--orange .section-heading > p:last-child {
  color: rgba(22, 11, 10, 0.78);
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  align-items: end;
  gap: 3rem;
}

.section-heading--split h2 {
  max-width: 900px;
}

.section-heading--split > p:last-child {
  margin-bottom: 0.6rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step-card {
  position: relative;
  min-height: 510px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 9px 9px 0 var(--ink);
}

.step-card--purple {
  background: var(--purple);
  color: var(--white);
}

.step-card--dark {
  background: var(--ink);
  color: var(--white);
}

.step-card__number {
  font-size: 0.83rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.step-card h3,
.feature-card h3 {
  margin: 1.8rem 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.step-card p,
.feature-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.phone-photo {
  position: relative;
  height: 230px;
  margin: 2rem 0 0;
  overflow: hidden;
  background: linear-gradient(#ffb829, #ff6d08);
  border: 8px solid var(--ink);
  border-radius: 24px;
}

.phone-photo__sun {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 50%;
}

.phone-photo__hill {
  position: absolute;
  bottom: -28%;
  width: 85%;
  height: 70%;
  background: var(--purple);
  border-radius: 50% 50% 0 0;
}

.phone-photo__hill--one {
  left: -18%;
}

.phone-photo__hill--two {
  right: -30%;
  bottom: -16%;
  background: var(--purple-deep);
}

.heart-button {
  display: grid;
  width: min(240px, 75%);
  aspect-ratio: 1;
  place-items: center;
  margin: 1.5rem auto -0.5rem;
  padding: 0;
  background: var(--white);
  color: var(--orange);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 0 rgba(22, 11, 10, 0.2);
  appearance: none;
  cursor: pointer;
  font-size: clamp(5rem, 10vw, 8rem);
  font-family: inherit;
  line-height: 1;
  transform: translateY(0);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.heart-button:hover {
  box-shadow: 0 12px 0 rgba(22, 11, 10, 0.2);
  transform: translateY(6px) scale(1.02);
}

.heart-button:active {
  box-shadow: 0 5px 0 rgba(22, 11, 10, 0.2);
  transform: translateY(13px) scale(0.98);
}

.heart-button:focus-visible {
  outline: 6px solid var(--gold);
  outline-offset: 6px;
}

.heart-button.is-liked > span {
  animation: heart-button-pop 560ms cubic-bezier(0.18, 0.9, 0.32, 1.35);
}

.heart-storm {
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
}

.heart-flake {
  position: absolute;
  top: -18vh;
  left: var(--left);
  color: var(--heart-color);
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--heart-size);
  line-height: 1;
  opacity: 0;
  filter: drop-shadow(0 5px 3px rgba(88, 19, 0, 0.18));
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
  will-change: transform, opacity;
  animation:
    heart-snowfall var(--fall-duration) cubic-bezier(0.16, 0.72, 0.32, 1) var(--delay) forwards,
    heart-blow-away var(--blow-duration) cubic-bezier(0.45, 0, 0.78, 0.35) var(--blow-delay) forwards;
}

@keyframes heart-button-pop {
  0% { transform: scale(1); }
  38% { transform: scale(1.34) rotate(-8deg); }
  68% { transform: scale(0.9) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}

@keyframes heart-snowfall {
  0% {
    opacity: 0;
    transform: translate3d(0, -12vh, 0) rotate(0deg) scale(0.65);
  }
  10% {
    opacity: 1;
  }
  68% {
    opacity: 1;
    transform: translate3d(var(--drift-mid), var(--landing-mid), 0)
      rotate(var(--spin-mid)) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(var(--drift), var(--landing-y), 0) rotate(var(--spin)) scale(1);
  }
}

@keyframes heart-blow-away {
  0% {
    opacity: 1;
    transform: translate3d(var(--drift), var(--landing-y), 0) rotate(var(--spin)) scale(1);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--gust-x), var(--gust-y), 0) rotate(var(--gust-spin)) scale(0.52);
  }
}

.mini-chart {
  display: flex;
  height: 230px;
  align-items: end;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
}

.mini-chart i {
  width: 18%;
  background: linear-gradient(var(--gold), var(--orange));
  border-radius: 16px 16px 3px 3px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.feature-card {
  grid-column: span 6;
  min-height: 300px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 rgba(22, 11, 10, 0.9);
}

.feature-card--wide {
  grid-column: span 8;
  grid-row: span 2;
}

.feature-card--yellow {
  grid-column: span 4;
  background: #ffd22f;
}

.feature-card--dark {
  grid-column: span 4;
  background: var(--ink);
  color: var(--white);
}

.feature-card--purple {
  background: var(--purple);
  color: var(--white);
}

.feature-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 1.8rem;
  font-weight: 950;
}

.feature-card--yellow .feature-icon,
.feature-card--dark .feature-icon,
.feature-card--purple .feature-icon {
  background: var(--white);
  color: var(--orange-deep);
}

.comment-stack {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 2.5rem;
}

.comment-stack span {
  width: fit-content;
  max-width: 92%;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px 999px 999px 5px;
  font-weight: 800;
}

.comment-stack span:nth-child(2) {
  align-self: flex-end;
  background: #e9ddff;
  border-radius: 999px 999px 5px 999px;
}

.privacy-lockup {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  max-width: 1300px;
  margin: 0 auto;
}

.privacy-heart {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background: linear-gradient(145deg, var(--gold), var(--orange-deep));
  border-radius: 50%;
  box-shadow: 18px 18px 0 var(--purple);
  color: var(--white);
  font-size: clamp(7rem, 18vw, 15rem);
  line-height: 1;
}

.privacy-lockup p:not(.eyebrow) {
  max-width: 770px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 900;
  text-underline-offset: 0.3em;
}

.testimonials {
  background: var(--cream);
}

.quote-reel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quote-reel blockquote {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.quote-reel blockquote:nth-child(2) {
  background: var(--gold);
  transform: rotate(1.5deg);
}

.quote-reel blockquote:nth-child(3) {
  background: var(--purple);
  color: var(--white);
  transform: rotate(-1deg);
}

.quote-reel cite {
  margin-top: 2rem;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0;
}

.final-cta {
  position: relative;
  min-height: 760px;
  padding: clamp(7rem, 15vw, 13rem) 1.5rem;
  overflow: hidden;
  background: linear-gradient(145deg, var(--orange-deep), var(--orange) 55%, var(--gold));
  text-align: center;
}

.final-cta > :not(.final-cta__heart) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--white);
  text-shadow: 0.045em 0.055em 0 rgba(114, 28, 0, 0.25);
}

.final-cta > p:not(.eyebrow) {
  margin: 1.5rem 0 2rem;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 700;
}

.final-cta__heart {
  position: absolute;
  color: rgba(255, 255, 255, 0.17);
  font-size: clamp(15rem, 35vw, 38rem);
  line-height: 1;
}

.final-cta__heart--one {
  top: -20%;
  left: -10%;
  transform: rotate(-16deg);
}

.final-cta__heart--two {
  right: -12%;
  bottom: -30%;
  color: rgba(255, 218, 47, 0.35);
  transform: rotate(15deg);
}

.final-cta__heart--three {
  bottom: -30%;
  left: 28%;
  color: rgba(116, 55, 245, 0.18);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem 2.5rem;
  padding: 2.5rem max(1.5rem, calc((100vw - 1380px) / 2));
  background: var(--ink);
  color: var(--white);
}

.wordmark--footer {
  gap: 0.7rem;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

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

.site-footer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.site-footer nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.85rem;
  font-weight: 850;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.45);
}

/* Interior pages */
.interior {
  min-height: 100svh;
  background:
    radial-gradient(circle at 90% 6%, rgba(255, 174, 12, 0.28), transparent 24rem),
    var(--cream);
}

.interior .site-header {
  border-bottom: 1px solid var(--line);
}

.interior-main {
  width: min(920px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.interior-hero {
  margin-bottom: 4rem;
}

.interior-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3.6rem, 9vw, 8rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.interior-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.4rem);
}

.prose {
  font-family: Avenir, "Avenir Next", system-ui, -apple-system, sans-serif;
}

.prose section,
.support-card,
.press-card {
  margin-top: 1rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.prose h2,
.support-card h2,
.press-card h2 {
  margin: 0 0 0.8rem;
  font-family: "Arial Rounded MT Bold", "Avenir Next", Avenir, ui-rounded, system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.prose p,
.prose li,
.support-card p,
.support-card li,
.press-card p,
.press-card li {
  color: #4f413d;
}

.prose a,
.support-card a,
.press-card a {
  color: var(--purple-deep);
  font-weight: 750;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.support-card {
  margin: 0;
}

.contact-card {
  margin-top: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 9px 9px 0 var(--ink);
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.contact-card p {
  max-width: 650px;
}

.press-kit {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.press-kit__icon {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 28%;
  box-shadow: 9px 9px 0 var(--ink);
}

.fact-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem 1rem;
  margin: 0;
}

.fact-list dt {
  font-weight: 900;
}

.fact-list dd {
  margin: 0;
  color: var(--muted);
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 2rem;
  background: var(--orange);
  text-align: center;
}

.error-page strong {
  display: block;
  color: var(--white);
  font-size: clamp(8rem, 30vw, 22rem);
  letter-spacing: -0.1em;
  line-height: 0.7;
  text-shadow: 0.05em 0.05em 0 rgba(22, 11, 10, 0.2);
}

.error-page h1 {
  margin: 2rem 0 0.5rem;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: -0.05em;
}

.error-page p {
  margin: 0 0 2rem;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .hero__copy {
    width: min(760px, calc(100% - 3rem));
    margin: 0 auto;
    padding-right: 0;
  }

  .hero__art {
    min-height: 580px;
  }

  .hero__art::after {
    inset: 0 0 auto;
    width: auto;
    height: 30%;
    background: linear-gradient(#ff6104, transparent);
  }

  .hero__art > img {
    object-position: 60% center;
  }

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

  .step-card {
    min-height: auto;
  }

  .phone-photo,
  .mini-chart {
    height: 190px;
  }

  .heart-button {
    width: 180px;
  }

  .feature-card,
  .feature-card--wide,
  .feature-card--yellow,
  .feature-card--dark {
    grid-column: span 6;
  }

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

  .site-footer p {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    width: min(100% - 2rem, 1500px);
    padding: 1rem 0;
  }

  .site-nav {
    gap: 0.65rem;
  }

  .site-nav a {
    display: none;
  }

  .release-pill {
    padding: 0.55rem 0.75rem;
    font-size: 0.72rem;
  }

  .hero__copy {
    width: min(100% - 2rem, 760px);
  }

  .hero h1 {
    font-size: clamp(3.85rem, 18vw, 6rem);
  }

  .hero__art {
    min-height: 440px;
  }

  .score-card {
    max-width: 54%;
  }

  .score-card--likes {
    top: 6%;
    left: 4%;
  }

  .score-card--comments {
    right: 4%;
    bottom: 5%;
  }

  .stat-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 2rem);
    margin-top: -1.8rem;
  }

  .stat-strip div {
    padding: 1.2rem;
  }

  .stat-strip div + div {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section-heading--split,
  .privacy-lockup,
  .press-kit {
    grid-template-columns: 1fr;
  }

  .privacy-heart {
    width: min(330px, 84vw);
    margin: 0 auto;
  }

  .feature-card,
  .feature-card--wide,
  .feature-card--yellow,
  .feature-card--dark,
  .feature-card--purple {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .quote-reel,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .quote-reel blockquote {
    min-height: 240px;
  }

  .final-cta {
    min-height: 640px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}

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

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