:root {
  color-scheme: light;
  --ink: #172033;
  --ink-soft: #34405a;
  --navy: #1f3557;
  --cream: #f6eddd;
  --cream-deep: #ead9bd;
  --paper: #fffaf2;
  --paper-warm: #fff4df;
  --honey: #cf8b41;
  --blue: #7fb5d6;
  --sage: #8fab8d;
  --heart: #ba4b4b;
  --border: rgba(23, 32, 51, 0.16);
  --shadow: 0 20px 60px rgba(31, 53, 87, 0.18);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

img,
svg {
  display: block;
}

img {
  height: auto;
  max-width: 100%;
}

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

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 52px);
  background: rgba(255, 250, 242, 0.82);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--navy);
  color: var(--cream);
  border: 2px solid var(--cream-deep);
  border-radius: 50%;
  font-size: 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
}

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

.hero {
  position: relative;
  min-height: clamp(760px, 88svh, 920px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 118px clamp(22px, 5vw, 68px) 92px;
  background:
    linear-gradient(145deg, #fffaf2 0%, #f8ead2 54%, #d9ece8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12vw -34vh 32vw;
  height: 58vh;
  background: rgba(31, 53, 87, 0.08);
  border-radius: 56% 44% 0 0;
  transform: rotate(-4deg);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -16vh;
  width: 58vw;
  min-width: 520px;
  aspect-ratio: 1;
  background: rgba(31, 53, 87, 0.08);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.microcopy,
.section-label,
.hero-kicker {
  margin: 0 0 14px;
  color: var(--heart);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(52px, 6.7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.1;
}

p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
}

.hero-lede {
  max-width: 660px;
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.5;
}

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

.hero-perks {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-perks li {
  padding: 15px 16px;
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid rgba(31, 53, 87, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(31, 53, 87, 0.08);
}

.hero-perks strong,
.hero-perks span {
  display: block;
}

.hero-perks strong {
  font-size: 16px;
  line-height: 1.1;
}

.hero-perks span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

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

.button.primary {
  background: var(--navy);
  color: #fffaf2;
  box-shadow: 0 12px 26px rgba(31, 53, 87, 0.24);
}

.button.secondary {
  background: rgba(255, 250, 242, 0.72);
  color: var(--navy);
  border-color: rgba(31, 53, 87, 0.22);
}

.button.light {
  background: #fffaf2;
  color: var(--navy);
}

.button.copied {
  background: var(--sage);
  color: #101827;
  border-color: rgba(23, 32, 51, 0.18);
}

.button.compact {
  min-height: 42px;
  padding-inline: 14px;
}

.hero-art {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 460px);
  min-width: 0;
}

.pet-display {
  padding-top: 26px;
}

.pet-window {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 62%, rgba(127, 181, 214, 0.26), transparent 45%),
    linear-gradient(180deg, #fffaf2 0%, #f6eddd 100%);
  border: 1px solid rgba(31, 53, 87, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-scene {
  isolation: isolate;
  background:
    radial-gradient(circle at 68% 28%, rgba(233, 189, 69, 0.22), transparent 22%),
    radial-gradient(circle at 18% 82%, rgba(127, 181, 214, 0.24), transparent 30%),
    linear-gradient(145deg, #fffaf2 0%, #f3ead9 54%, #e4f1ed 100%);
}

.pet-window::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 54px;
  height: 10px;
  background: rgba(23, 32, 51, 0.88);
  border-radius: 999px;
  box-shadow: 0 20px 30px rgba(31, 53, 87, 0.18);
}

.pet-window::after {
  content: "";
  position: absolute;
  right: -24%;
  bottom: -25%;
  width: 76%;
  aspect-ratio: 1;
  background: rgba(143, 171, 141, 0.16);
  border-radius: 50%;
}

.codex-window {
  position: absolute;
  z-index: 1;
  top: 52px;
  right: 38px;
  width: min(78%, 330px);
  min-height: 270px;
  padding: 22px 24px;
  background: #172033;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 18px;
  box-shadow:
    0 24px 52px rgba(23, 32, 51, 0.24),
    inset 0 0 0 1px rgba(255, 250, 242, 0.04);
}

.window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 46px;
  color: #fffaf2;
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-top span:nth-child(1) {
  background: #f36f5f;
}

.window-top span:nth-child(2) {
  background: #e9bd45;
}

.window-top span:nth-child(3) {
  margin-right: 12px;
  background: #79cdb6;
}

.window-top strong {
  font-size: 20px;
  letter-spacing: 0;
}

.chat-line,
.reply-bubble {
  height: 22px;
  margin-top: 16px;
  border-radius: 999px;
}

.chat-line {
  width: 62%;
  background: rgba(255, 250, 242, 0.17);
}

.chat-line.long {
  width: 86%;
}

.reply-bubble {
  width: 68%;
  height: 48px;
  margin-top: 42px;
  background: #fffaf2;
}

.reply-bubble::after {
  content: "";
  display: block;
  width: 72%;
  height: 14px;
  margin: 17px 0 0 18px;
  background: rgba(23, 32, 51, 0.18);
  border-radius: 999px;
}

.mac-mini {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 66px;
  width: min(72%, 310px);
  height: 66px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, #f5f1e8 0%, #d8d3ca 100%);
  border: 1px solid rgba(23, 32, 51, 0.16);
  border-radius: 18px;
  box-shadow: 0 20px 32px rgba(23, 32, 51, 0.18);
}

.mac-mini span {
  position: absolute;
  right: 22px;
  top: 28px;
  width: 7px;
  height: 7px;
  background: #79cdb6;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(121, 205, 182, 0.2);
}

.pet-window img {
  position: relative;
  z-index: 3;
  align-self: end;
  width: min(72%, 330px);
  margin-bottom: 42px;
  filter: drop-shadow(0 26px 28px rgba(23, 32, 51, 0.2));
}

.maker-sticker {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 24px;
  display: grid;
  max-width: 180px;
  min-width: 128px;
  min-height: 58px;
  place-items: center;
  padding: 10px 18px;
  background: #e9bd45;
  color: var(--ink);
  border: 2px solid #fffaf2;
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(31, 53, 87, 0.18);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
  transform: rotate(4deg);
}

.pet-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid rgba(31, 53, 87, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(31, 53, 87, 0.08);
}

.pet-caption strong {
  font-size: 18px;
}

.pet-caption span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.desk-line {
  position: absolute;
  display: block;
  height: 8px;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(23, 32, 51, 0.16);
}

.line-one {
  right: 0;
  bottom: 8%;
  width: 100%;
}

.line-two {
  right: 18%;
  bottom: 2%;
  width: 56%;
  background: var(--honey);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: clamp(22px, 5vw, 68px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.section-shell {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.buddy-band,
.download-band,
.install,
.around-band,
.maker-band,
.mood-band,
.preview,
.share-band {
  padding: clamp(72px, 10vw, 116px) 0;
}

.mood-band {
  background: #fffdf7;
}

.mood-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(340px, 1fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
}

.mood-grid h2 {
  max-width: 520px;
}

.mood-frame {
  margin: 0;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mood-frame img {
  width: 100%;
  border-radius: 4px;
}

.buddy-band {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}

.buddy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.buddy-notes {
  display: grid;
  gap: 12px;
}

.buddy-notes div {
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(23, 32, 51, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(31, 53, 87, 0.07);
}

.buddy-notes strong,
.buddy-notes span {
  display: block;
}

.buddy-notes strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.buddy-notes span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.maker-band {
  background: #fff8ea;
  padding: clamp(46px, 7vw, 76px) 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--heart);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.maker-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(22px, 5vw, 48px);
  align-items: start;
}

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

.maker-links a,
.maker-note {
  min-height: 84px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid rgba(143, 104, 67, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 16px 30px rgba(31, 53, 87, 0.08);
}

.maker-links a {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.maker-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(31, 53, 87, 0.12);
}

.maker-links strong,
.maker-note strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.maker-links span,
.maker-note span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.download-band {
  background: var(--navy);
  color: #fffaf2;
}

.download-band p,
.download-band .section-label {
  color: rgba(255, 250, 242, 0.78);
}

.download-grid,
.share-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.download-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
}

.download-panel strong,
.download-panel span {
  display: block;
}

.download-panel strong {
  overflow-wrap: anywhere;
  font-size: 15px;
}

.download-panel span {
  margin-top: 4px;
  color: rgba(255, 250, 242, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.verified-package {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  max-width: 560px;
  margin-top: 24px;
  padding: 14px 16px;
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 250, 242, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.verified-package span {
  color: #fffaf2;
}

.verified-package strong {
  color: rgba(255, 250, 242, 0.82);
}

.verified-package a {
  color: #f7cf8a;
  text-decoration: none;
}

.verified-package a:hover {
  text-decoration: underline;
}

.share-band {
  background:
    radial-gradient(circle at 86% 14%, rgba(127, 181, 214, 0.18), transparent 34%),
    linear-gradient(180deg, #fffaf2 0%, #f8f0df 100%);
}

.around-band {
  background:
    radial-gradient(circle at 14% 20%, rgba(207, 139, 65, 0.16), transparent 32%),
    linear-gradient(180deg, #fffdf7 0%, #eef6f2 100%);
}

.around-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 64px);
  align-items: start;
}

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

.around-links a,
.around-note {
  min-height: 112px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(31, 53, 87, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(31, 53, 87, 0.08);
}

.around-links a {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.around-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(31, 53, 87, 0.12);
}

.around-links strong,
.around-note strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.around-links span,
.around-note span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.share-card-frame {
  margin: 0;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.share-card-frame img {
  width: 100%;
  border-radius: 4px;
}

.file-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--cream);
  color: var(--navy);
  border-radius: var(--radius);
}

.file-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

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

.install-card {
  min-height: 100%;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(31, 53, 87, 0.08);
}

.install-card.dark {
  background: var(--ink);
  color: #fffaf2;
}

.install-card.dark p {
  color: rgba(255, 250, 242, 0.74);
}

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

.install-card li {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.install-card.dark li {
  color: rgba(255, 250, 242, 0.76);
}

pre {
  overflow-x: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 18px 0;
  padding: 16px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.15);
  border-radius: var(--radius);
  color: #fffaf2;
  font-size: 12px;
  line-height: 1.6;
}

.preview {
  background:
    linear-gradient(180deg, #eaf5f0 0%, #f8f0df 100%);
}

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

.motion-strip figure {
  margin: 0;
}

.motion-strip figure {
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 20px;
  background: #fffaf2;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: var(--radius);
}

.motion-strip img {
  width: min(150px, 100%);
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 16px 18px rgba(31, 53, 87, 0.16));
}

figcaption {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 22px;
  background: var(--ink);
  color: rgba(255, 250, 242, 0.76);
  font-size: 13px;
  font-weight: 750;
}

.site-footer span {
  color: #fffaf2;
}

.site-footer a:hover {
  color: #fffaf2;
}

.toast {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  max-width: min(420px, calc(100vw - 40px));
  min-height: 52px;
  align-items: center;
  gap: 10px;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  padding: 14px 18px;
  background: var(--ink);
  color: #fffaf2;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(23, 32, 51, 0.24);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast::before {
  content: "✓";
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  background: #e9bd45;
  color: var(--ink);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 950;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.copy-panel[hidden] {
  display: none;
}

.copy-panel {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(23, 32, 51, 0.52);
}

.copy-panel-card {
  width: min(640px, 100%);
  padding: 24px;
  background: #fffaf2;
  border: 1px solid rgba(31, 53, 87, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 28px 72px rgba(23, 32, 51, 0.28);
}

.copy-panel-card h2 {
  margin: 4px 0 8px;
  font-size: 26px;
}

.copy-panel-card p {
  margin: 0;
}

.copy-panel-card textarea {
  width: 100%;
  min-height: 190px;
  margin: 18px 0;
  padding: 14px;
  resize: vertical;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: 13px/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

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

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 106px;
    padding-bottom: 104px;
  }

  .hero-copy {
    width: 100%;
    max-width: 560px;
  }

  .hero-lede,
  .hero-actions {
    max-width: 520px;
  }

  .hero-art {
    width: min(100%, 420px);
    justify-self: start;
  }

  .pet-window {
    min-height: 430px;
  }

  .download-grid,
  .buddy-grid,
  .around-grid,
  .maker-grid,
  .mood-grid,
  .share-grid,
  .install-grid,
  .motion-strip {
    grid-template-columns: 1fr;
  }

  .download-panel {
    grid-template-columns: auto 1fr;
  }

  .download-panel .button {
    grid-column: 1 / -1;
  }

  .maker-links {
    grid-template-columns: 1fr;
  }

  .around-links {
    grid-template-columns: 1fr;
  }

  .motion-strip figure {
    min-height: 230px;
  }

  .toast {
    right: 50%;
    bottom: 18px;
    width: calc(100vw - 44px);
    justify-content: center;
    transform: translate(50%, 12px);
  }

  .toast.show {
    transform: translate(50%, 0);
  }

  .copy-panel {
    align-items: end;
  }

  .copy-panel-card {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  p {
    font-size: 16px;
  }

  h1 {
    max-width: 360px;
    font-size: 40px;
    line-height: 0.98;
  }

  .hero-perks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-perks li {
    padding: 12px 10px;
  }

  .hero-perks strong {
    font-size: 14px;
  }

  .hero-perks span {
    font-size: 12px;
  }

  .hero-actions,
  .share-actions,
  .button {
    width: 100%;
  }

  .pet-window {
    min-height: 380px;
  }

  .pet-window img {
    width: min(76%, 265px);
  }

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

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