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

@font-face {
  font-family: "Geist Mono";
  src: url("../../../public/assets/fonts/GeistMono-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f4f1e9;
  --paper-deep: #eae5da;
  --paper-raised: #fffdf7;
  --ink: #181816;
  --ink-soft: #58564f;
  --line: #aaa59a;
  --line-strong: #181816;
  --accent: #f45119;
  --accent-ink: #181816;
  --shadow: rgba(56, 45, 29, 0.2);
  --header-height: 72px;
  --shell: min(1280px, calc(100vw - 64px));
  --radius: 0px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #171714;
  --paper-deep: #22211d;
  --paper-raised: #2b2924;
  --ink: #f2eee5;
  --ink-soft: #b5b0a6;
  --line: #6b675f;
  --line-strong: #f2eee5;
  --accent: #ff672d;
  --accent-ink: #171714;
  --shadow: rgba(0, 0, 0, 0.32);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1), visibility 420ms;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.page-loader__mark img {
  width: 34px;
  height: 34px;
}

.page-loader__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: loader-line 900ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes loader-line {
  to { transform: scaleX(1); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding-inline: max(24px, calc((100vw - 1440px) / 2 + 32px));
  border-bottom: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.brand img {
  width: 30px;
  height: 30px;
}

.brand > span > span {
  color: var(--accent);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a,
.site-footer a {
  position: relative;
}

.desktop-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.theme-toggle,
.menu-toggle {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.theme-toggle:hover,
.menu-toggle:hover {
  background: var(--paper-deep);
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 35;
  visibility: hidden;
  background: var(--accent);
  color: var(--accent-ink);
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 240ms ease, transform 240ms ease, visibility 240ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  gap: 0;
  width: min(100% - 32px, 720px);
  margin: 56px auto;
}

.mobile-menu a {
  padding: 18px 0;
  border-bottom: 1px solid currentColor;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(34px, 11vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.mobile-theme-toggle {
  margin-top: 28px;
  padding: 16px 0;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-weight: 750;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(520px, 1.3fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  width: min(1440px, calc(100vw - 64px));
  min-height: calc(100dvh - var(--header-height));
  margin-inline: auto;
  padding: 32px 0 48px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero h1 {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Geist", sans-serif;
  font-size: clamp(70px, 8.2vw, 126px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-line + .hero-line {
  margin-top: 0.12em;
}

.hero h1 em {
  display: inline-block;
  padding-bottom: 0.05em;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.84em;
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  text-transform: none;
  transform: rotate(-2deg);
}

.word-your {
  display: inline-block;
  transform: rotate(-3deg) translateY(-0.02em);
}

.word-your.second {
  transform: rotate(2deg) translateY(0.01em);
}

.hero__copy > p {
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.45;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button--primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.button--primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.button--outline {
  background: var(--paper);
  color: var(--ink);
}

.button--outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.button:active,
.nav-download:active,
.theme-toggle:active,
.menu-toggle:active {
  transform: translateY(1px) scale(0.99);
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  margin: 0;
  transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-stage__frame {
  position: relative;
  min-width: 0;
  padding: clamp(12px, 1.6vw, 24px);
  background: var(--ink);
  box-shadow: 24px 28px 0 var(--shadow);
  clip-path: polygon(1% 3%, 98% 0, 100% 96%, 3% 100%, 0 8%);
  transform: rotate(1.8deg);
}

.hero-stage__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid #d9d5ce;
}

.hero-stage figcaption,
.product-spread figcaption {
  margin-top: 18px;
  color: var(--ink-soft);
  font-family: "Geist Mono", monospace;
  font-size: 12px;
}

.paper-scrap {
  position: absolute;
  z-index: -1;
  display: grid;
  place-items: center;
  width: 190px;
  height: 88px;
  border: 1px solid #aaa49a;
  background: #fffaf0;
  color: #24211d;
  box-shadow: 10px 12px 0 var(--shadow);
  font-family: "Geist Mono", monospace;
  font-size: 13px;
}

.paper-scrap--one {
  bottom: -12px;
  left: -48px;
  transform: rotate(-7deg);
}

.paper-scrap--two {
  top: -42px;
  right: 24px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  transform: rotate(5deg);
}

.hero-formula {
  position: absolute;
  z-index: 0;
  color: var(--ink-soft);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  opacity: 0.7;
  pointer-events: none;
}

.hero-formula--one {
  right: 8%;
  bottom: 24px;
  transform: rotate(-4deg);
}

.hero-formula--two {
  top: 14%;
  left: 42%;
  transform: rotate(7deg);
}

.verb-band {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--line-strong);
  border-bottom: 2px solid var(--line-strong);
  background: var(--accent);
  color: var(--accent-ink);
}

.verb-band__track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 120px;
  animation: verb-march 24s linear infinite;
}

.verb-band__track span,
.verb-band__track b {
  flex: none;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(56px, 7.5vw, 112px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.verb-band__track b {
  padding: 0 34px;
  color: var(--paper);
}

@keyframes verb-march {
  to { transform: translateX(-50%); }
}

.story {
  padding-block: clamp(96px, 10vw, 160px);
}

.story__heading {
  max-width: 760px;
  margin: 0 0 64px;
}

.story__heading h2,
.inside__title h2,
.host-section h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Geist", sans-serif;
  font-size: clamp(58px, 7.4vw, 112px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.story__heading p,
.faq__heading > p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.moves-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.move {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--paper-raised);
}

.move h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 72px);
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.move p {
  max-width: 42ch;
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.move__index {
  position: absolute;
  top: 14px;
  right: 20px;
  color: var(--accent);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(82px, 9vw, 140px);
  line-height: 0.8;
  opacity: 0.2;
  transform: rotate(5deg);
}

.move__copy {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 58px);
}

.move--host {
  grid-column: span 7;
  min-height: 540px;
}

.move--host img {
  position: absolute;
  right: -3%;
  bottom: -2%;
  width: 76%;
  height: auto;
  object-fit: contain;
  border: 14px solid var(--ink);
  box-shadow: -18px -14px 0 color-mix(in srgb, var(--accent) 75%, transparent);
  transform: rotate(-2deg);
}

.move--share {
  grid-column: span 5;
  min-height: 540px;
  padding: clamp(28px, 4vw, 58px);
  background: var(--accent);
  color: var(--accent-ink);
}

.move--share p {
  color: color-mix(in srgb, var(--accent-ink) 78%, transparent);
}

.move--share .move__index {
  color: var(--accent-ink);
}

.link-note {
  position: absolute;
  right: 42px;
  bottom: 44px;
  left: 42px;
  display: grid;
  gap: 7px;
  padding: 24px;
  border: 1px solid #28241f;
  background: #fffaf0;
  color: #28241f;
  box-shadow: 12px 14px 0 rgba(24, 24, 22, 0.25);
  font-family: "Geist Mono", monospace;
  transform: rotate(2deg);
}

.link-note span,
.link-note small {
  font-size: 11px;
}

.link-note strong {
  overflow: hidden;
  font-size: clamp(12px, 1.25vw, 16px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.move--approve {
  grid-column: span 5;
  min-height: 510px;
}

.move--approve img {
  position: absolute;
  right: -20%;
  bottom: 28px;
  width: 106%;
  height: auto;
  object-fit: contain;
  border: 12px solid var(--ink);
  transform: rotate(3deg);
}

.move--write {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 510px;
  background: var(--paper-deep);
}

.move--write > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.75) contrast(1.05);
}

.move--write .move__copy {
  align-self: end;
}

.inside {
  padding-block: 40px clamp(96px, 12vw, 180px);
}

.inside__title {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 0 -20px 4%;
}

.inside__title h2 em,
.final-cta h2 em {
  display: inline-block;
  padding-bottom: 0.06em;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  text-transform: none;
}

.product-spread {
  position: relative;
  margin: 0;
  padding: clamp(16px, 2.2vw, 34px);
  background: var(--ink);
  box-shadow: 26px 30px 0 var(--shadow);
  clip-path: polygon(2% 0, 97% 2%, 100% 96%, 4% 100%, 0 5%);
  transform: perspective(1300px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) rotate(-1deg);
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-spread > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-spread figcaption {
  color: var(--paper);
}

.product-spread__tape {
  position: absolute;
  z-index: 2;
  width: 120px;
  height: 30px;
  background: var(--accent);
}

.product-spread__tape--left {
  top: 8px;
  left: 8%;
  transform: rotate(-6deg);
}

.product-spread__tape--right {
  right: 8%;
  bottom: 16px;
  transform: rotate(5deg);
}

.inside-notes {
  display: grid;
  grid-template-columns: auto minmax(240px, 520px) 1fr;
  align-items: center;
  gap: clamp(20px, 5vw, 80px);
  margin-top: 58px;
}

.inside-notes__brace {
  margin: 0;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: clamp(120px, 15vw, 240px);
  font-weight: 400;
  line-height: 0.7;
}

.inside-notes > p:nth-child(2) {
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.35;
}

.inside-notes__scribble {
  justify-self: end;
  margin: 0 7% 0 0;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: clamp(26px, 3vw, 44px);
  font-style: italic;
  line-height: 1.1;
  transform: rotate(-7deg);
}

.host-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: stretch;
  border: 1px solid var(--line-strong);
  margin-bottom: clamp(96px, 12vw, 180px);
}

.host-section__photo {
  min-height: 640px;
  overflow: hidden;
  border-right: 1px solid var(--line-strong);
}

.host-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.7) contrast(1.08);
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.host-section__photo:hover img {
  transform: scale(1.025);
}

.host-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 72px);
  background: var(--paper-raised);
}

.host-section h2 {
  font-size: clamp(56px, 6.5vw, 94px);
}

.host-section__copy > p {
  margin: 28px 0 48px;
  color: var(--ink-soft);
  font-size: 19px;
}

.host-section__facts {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.host-section__facts p {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.host-section__facts span {
  color: var(--ink-soft);
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 9vw, 140px);
  padding-bottom: clamp(96px, 12vw, 180px);
}

.faq h2 {
  font-size: clamp(56px, 6.5vw, 94px);
}

.faq__list {
  border-top: 2px solid var(--line-strong);
}

.faq details {
  border-bottom: 1px solid var(--line-strong);
}

.faq summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
}

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

.faq summary span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-family: "Geist Mono", monospace;
  font-size: 20px;
  transition: transform 220ms ease, background 220ms ease;
}

.faq details[open] summary span {
  background: var(--accent);
  color: var(--accent-ink);
  transform: rotate(45deg);
}

.faq details p {
  max-width: 60ch;
  margin: -6px 56px 26px 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(240px, 360px);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  min-height: 660px;
  padding-block: clamp(80px, 10vw, 150px);
  border-top: 2px solid var(--line-strong);
}

.final-cta__brace {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(180px, 24vw, 360px);
  font-weight: 400;
  line-height: 0.6;
}

.final-cta__paper {
  display: grid;
  gap: 34px;
  padding: 38px 28px;
  border: 1px solid #9b958a;
  background: #fffaf0;
  color: #24211d;
  box-shadow: 16px 18px 0 var(--shadow);
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  transform: rotate(4deg);
}

.final-cta__paper strong {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 44px;
  font-style: italic;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  min-height: 112px;
  border-top: 1px solid var(--line-strong);
  font-size: 13px;
}

.brand--footer {
  font-size: 18px;
}

.brand--footer img {
  width: 26px;
  height: 26px;
}

.site-footer > p {
  margin: 0;
  color: var(--ink-soft);
}

.site-footer > div {
  display: flex;
  gap: 24px;
  font-weight: 650;
}

.js .reveal {
  opacity: 0;
  transform: translateY(38px) rotate(0.35deg);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 40px, 1280px);
  }

  .hero {
    grid-template-columns: minmax(320px, 0.8fr) minmax(470px, 1.2fr);
    width: min(100% - 40px, 1440px);
  }

  .hero h1 {
    font-size: clamp(64px, 8.4vw, 96px);
  }

  .paper-scrap--one {
    left: -20px;
  }

  .move--write {
    grid-template-columns: 1fr;
  }

  .move--write > img {
    height: 280px;
  }

  .host-section__photo {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
    --shell: calc(100% - 32px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

  .desktop-nav,
  .nav-download,
  .theme-toggle {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    width: calc(100% - 32px);
    min-height: auto;
    padding: 64px 0 80px;
  }

  .hero h1 {
    font-size: clamp(58px, 15vw, 104px);
  }

  .hero__copy > p {
    max-width: 620px;
  }

  .hero-stage {
    width: 96%;
    margin-left: auto;
  }

  .hero-formula--two {
    top: 44%;
    left: 2%;
  }

  .move--host,
  .move--share,
  .move--approve,
  .move--write {
    grid-column: 1 / -1;
  }

  .move--host,
  .move--share,
  .move--approve {
    min-height: 520px;
  }

  .move--host img {
    width: 78%;
  }

  .move--approve img {
    right: -8%;
    width: 92%;
  }

  .move--write {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .move--write > img {
    height: 100%;
  }

  .inside__title {
    margin-left: 0;
  }

  .inside-notes {
    grid-template-columns: auto 1fr;
  }

  .inside-notes__scribble {
    display: none;
  }

  .host-section,
  .faq {
    grid-template-columns: 1fr;
  }

  .host-section__photo {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .faq {
    gap: 56px;
  }

  .final-cta {
    grid-template-columns: auto 1fr;
  }

  .final-cta__paper {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding-block: 28px;
  }

  .site-footer > p:nth-of-type(1) {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 27px;
    height: 27px;
  }

  .hero {
    gap: 48px;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(53px, 16.6vw, 80px);
    line-height: 0.85;
  }

  .hero-line {
    white-space: normal;
  }

  .hero__copy > p {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero__actions,
  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    width: 100%;
  }

  .hero-stage__frame {
    box-shadow: 12px 14px 0 var(--shadow);
  }

  .paper-scrap {
    width: 130px;
    height: 62px;
    font-size: 9px;
  }

  .paper-scrap--one {
    bottom: -24px;
    left: 4px;
  }

  .paper-scrap--two {
    top: -36px;
    right: 8px;
    font-size: 14px;
  }

  .hero-formula--two {
    display: none;
  }

  .verb-band__track {
    min-height: 88px;
  }

  .verb-band__track span,
  .verb-band__track b {
    font-size: 54px;
  }

  .verb-band__track b {
    padding: 0 20px;
  }

  .story {
    padding-block: 88px;
  }

  .story__heading {
    margin-bottom: 44px;
  }

  .story__heading h2,
  .inside__title h2,
  .host-section h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .moves-grid {
    gap: 12px;
  }

  .move--host,
  .move--share,
  .move--approve {
    min-height: 460px;
  }

  .move--host img {
    right: -16%;
    width: 108%;
    border-width: 9px;
  }

  .move--share {
    padding: 28px;
  }

  .link-note {
    right: 22px;
    bottom: 28px;
    left: 22px;
    padding: 18px;
  }

  .move--approve img {
    right: -28%;
    bottom: 32px;
    width: 136%;
    border-width: 9px;
  }

  .move--write {
    grid-template-columns: 1fr;
  }

  .move--write > img {
    height: 300px;
  }

  .inside {
    padding-top: 0;
  }

  .inside__title {
    margin-bottom: -8px;
  }

  .product-spread {
    padding: 10px;
    box-shadow: 12px 14px 0 var(--shadow);
  }

  .product-spread figcaption {
    padding-inline: 4px;
    font-size: 10px;
  }

  .inside-notes {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    margin-top: 42px;
  }

  .inside-notes__brace {
    font-size: 116px;
  }

  .inside-notes > p:nth-child(2) {
    font-size: 18px;
  }

  .host-section__photo {
    min-height: 340px;
  }

  .host-section__copy {
    padding: 30px 24px;
  }

  .host-section__facts p {
    grid-template-columns: 84px 1fr;
    gap: 12px;
    font-size: 14px;
  }

  .faq summary {
    padding: 22px 0;
    font-size: 18px;
  }

  .faq details p {
    margin-right: 0;
    font-size: 15px;
  }

  .final-cta {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    min-height: 540px;
  }

  .final-cta__brace {
    font-size: 140px;
  }

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

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

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }
}

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

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

  .page-loader {
    display: none;
  }

  .verb-band__track {
    transform: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-stage,
  .product-spread {
    transform: none;
  }
}
