:root {
  --paper: #ecebe4;
  --paper-cool: #dfe5e1;
  --ink: #102a35;
  --ink-soft: #35505a;
  --deep: #071d28;
  --ice: #c7dcdd;
  --line: rgba(16, 42, 53, 0.24);
  --signal: #ff6242;
  --white: #f7f5ec;
  --gutter: clamp(22px, 3.8vw, 58px);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Nimbus Sans L", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--signal);
  color: var(--deep);
}

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

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

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: 3px;
  background: rgba(247, 245, 236, 0.13);
  pointer-events: none;
}

.reading-progress__bar {
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--signal);
  will-change: transform;
}

.reading-meter {
  position: fixed;
  right: 14px;
  top: 50%;
  z-index: 65;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--signal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  mix-blend-mode: difference;
  pointer-events: none;
}

.reading-meter strong {
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  color: var(--white);
  border-bottom: 1px solid rgba(229, 239, 238, 0.26);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.wordmark i {
  width: 25px;
  height: 1px;
  display: block;
  transform: rotate(-58deg);
  background: currentColor;
  transition: transform 300ms var(--ease);
}

.wordmark:hover i {
  transform: rotate(-45deg) scaleX(1.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:not(.site-nav__subscribe) {
  position: relative;
}

.site-nav a:not(.site-nav__subscribe)::after {
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 260ms var(--ease);
}

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

.site-nav__subscribe {
  padding: 10px 14px;
  border: 1px solid rgba(247, 245, 236, 0.65);
  transition: background 220ms ease, color 220ms ease;
}

.site-nav__subscribe:hover {
  background: var(--white);
  color: var(--deep);
}

.hero {
  position: relative;
  min-height: max(820px, 100vh);
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 53% 82%, rgba(79, 128, 140, 0.18), transparent 32%),
    linear-gradient(118deg, #071d28 0%, #071d28 53%, #102e3a 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

.hero__rule {
  position: absolute;
  top: 88px;
  bottom: 0;
  left: 46.6%;
  width: 1px;
  background: rgba(229, 239, 238, 0.16);
}

.hero__copy {
  position: relative;
  z-index: 4;
  width: 50%;
  padding: clamp(174px, 21vh, 214px) 0 110px var(--gutter);
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker span {
  margin-inline: 8px;
  color: var(--signal);
}

.hero h1 {
  position: relative;
  width: min-content;
  margin: 42px 0 38px;
  font-family: var(--serif);
  font-size: clamp(112px, 11.1vw, 170px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.72;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  margin-left: clamp(58px, 6.4vw, 96px);
}

.hero h1 b {
  position: absolute;
  top: 44%;
  right: -0.13em;
  color: var(--signal);
  font-family: var(--sans);
  font-size: 0.53em;
  font-weight: 200;
  line-height: 1;
}

.hero__deck {
  max-width: 440px;
  margin: 0;
  color: #c5d5d6;
  font-family: var(--serif);
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.4;
}

.circle-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 37px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.circle-link svg,
.signup-form button svg {
  width: 18px;
  height: 18px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.circle-link svg {
  width: 43px;
  height: 43px;
  padding: 11px;
  border: 1px solid rgba(247, 245, 236, 0.5);
  border-radius: 50%;
  transition: transform 300ms var(--ease), background 300ms ease, color 300ms ease;
}

.circle-link:hover svg {
  transform: translateX(7px);
  background: var(--signal);
  color: var(--deep);
  border-color: var(--signal);
}

.hero__visual {
  --rx: 0deg;
  --ry: 0deg;
  position: absolute;
  top: 112px;
  right: clamp(42px, 5.8vw, 90px);
  z-index: 2;
  width: min(45vw, 660px);
  margin: 0;
  transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-origin: center;
  transition: transform 250ms ease-out;
}

.ice-plate {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 36px 60px rgba(0, 0, 0, 0.24));
}

.survey-line {
  stroke-dasharray: 850;
  stroke-dashoffset: 850;
  animation: trace-line 2.2s 0.5s var(--ease) forwards;
}

.hero__visual figcaption {
  display: flex;
  justify-content: space-between;
  margin: 9px 20px 0;
  color: #9bb4b8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__coordinate {
  position: absolute;
  right: var(--gutter);
  bottom: 32px;
  display: flex;
  gap: 24px;
  color: #78959e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #98b1b6;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 47px;
  height: 1px;
  overflow: hidden;
  background: #536e76;
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-100%);
  background: var(--signal);
  animation: scroll-pulse 2s infinite ease-in-out;
}

.section-pad {
  padding-inline: var(--gutter);
}

.stories {
  padding-top: clamp(110px, 13vw, 188px);
  padding-bottom: clamp(110px, 12vw, 174px);
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  align-items: end;
  margin-bottom: clamp(72px, 8vw, 116px);
}

.section-head .section-kicker {
  grid-column: 1 / 4;
  align-self: start;
  margin-top: 11px;
}

.section-head h2,
.notes-intro h2,
.subscribe h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.3vw, 96px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.89;
}

.section-head h2 {
  grid-column: 4 / 9;
}

.section-head > p:last-child {
  grid-column: 10 / 13;
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  align-items: start;
}

.story-card:first-child {
  grid-column: span 5;
}

.story-card:nth-child(2) {
  grid-column: span 4;
  margin-top: clamp(40px, 6vw, 88px);
}

.story-card:nth-child(3) {
  grid-column: span 3;
  margin-top: clamp(100px, 12vw, 174px);
}

.story-card a {
  display: block;
}

.story-card__image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-cool);
}

.story-card__image svg {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.001);
  filter: saturate(0.88);
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.story-card__plate {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 8px 6px;
  background: rgba(7, 29, 40, 0.86);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-card__body {
  position: relative;
  min-height: 205px;
  padding: 22px 0 52px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.story-card__body > p {
  margin: 0 0 34px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-card__body > p span {
  margin: 0 7px;
  color: var(--signal);
}

.story-card__body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.2vw, 35px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.story-card:nth-child(3) .story-card__body h3 {
  font-size: clamp(24px, 1.9vw, 30px);
}

.story-card__read {
  position: absolute;
  right: 0;
  bottom: 20px;
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 300ms ease, transform 300ms var(--ease), color 300ms ease;
}

.story-card__read i {
  color: var(--signal);
  font-size: 15px;
  font-style: normal;
}

.story-card a:hover .story-card__image svg,
.story-card a:focus-visible .story-card__image svg {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.02);
}

.story-card a:hover .story-card__read,
.story-card a:focus-visible .story-card__read {
  opacity: 1;
  transform: translateY(0);
}

.story-card a:hover .story-card__body,
.story-card a:focus-visible .story-card__body {
  border-top-color: var(--signal);
}

.field-notes {
  background: var(--paper-cool);
}

.notes-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  padding-top: clamp(108px, 12vw, 170px);
  padding-bottom: clamp(96px, 10vw, 144px);
  border-top: 1px solid var(--line);
}

.notes-intro__label {
  grid-column: 1 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.notes-intro__copy {
  grid-column: 4 / 11;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 20px;
}

.notes-intro__copy h2 {
  grid-column: 1 / 8;
}

.notes-intro__copy p {
  grid-column: 4 / 8;
  max-width: 560px;
  margin: 42px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.5;
}

.field-beat {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  border-top: 1px solid var(--line);
}

.field-beat__index {
  grid-column: 1 / 3;
  display: flex;
  justify-content: space-between;
  padding-top: 4px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.field-beat__copy h3 {
  margin: 25px 0 30px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 69px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.field-beat__copy h3 strong {
  color: var(--signal);
  font-family: var(--sans);
  font-size: 1.18em;
  font-weight: 300;
  letter-spacing: -0.08em;
}

.field-beat__copy > p:last-child {
  max-width: 445px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.58;
}

.field-beat--days {
  min-height: 690px;
  padding-top: clamp(72px, 8vw, 115px);
  padding-bottom: clamp(72px, 8vw, 115px);
  align-items: center;
}

.field-beat--days .field-beat__index {
  grid-column: 1 / 3;
  align-self: start;
}

.field-beat--days .field-beat__copy {
  grid-column: 3 / 7;
}

.day-dial {
  grid-column: 8 / 13;
  width: min(100%, 500px);
  margin: 0;
  justify-self: end;
}

.day-dial svg {
  display: block;
  width: 100%;
  height: auto;
}

.day-dial figcaption {
  display: flex;
  justify-content: space-between;
  width: 76%;
  margin: -2px auto 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.field-beat--distance {
  min-height: 785px;
  padding-top: clamp(82px, 8vw, 120px);
  padding-bottom: clamp(82px, 8vw, 120px);
  align-items: center;
  background: var(--paper);
}

.route-map {
  grid-column: 1 / 7;
  grid-row: 1;
  margin-right: 3vw;
}

.route-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.route-map__legend {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field-beat--distance .field-beat__index {
  grid-column: 8 / 10;
  grid-row: 1;
  align-self: start;
}

.field-beat--distance .field-beat__copy {
  grid-column: 8 / 13;
  grid-row: 1;
  align-self: center;
}

.field-beat--sound {
  display: block;
  min-height: 740px;
  overflow: hidden;
  border-color: #2d4854;
  background: var(--deep);
  color: var(--white);
}

.sound-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sound-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 29, 40, 0.02), rgba(7, 29, 40, 0.46) 68%, rgba(7, 29, 40, 0.88));
}

.sound-visual svg {
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  height: calc(100% - 110px);
}

.wave {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.wave--one {
  stroke: #86b7bf;
  stroke-width: 2;
}

.wave--two {
  stroke: #ff6242;
  stroke-width: 1.2;
  opacity: 0.78;
}

.sound-visual__axis {
  position: absolute;
  top: 34px;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #72909a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.playhead {
  position: absolute;
  top: 76px;
  bottom: 35px;
  left: 32%;
  z-index: 2;
  width: 1px;
  opacity: 0;
  background: var(--signal);
}

.field-beat--sound.is-playing .playhead {
  opacity: 0.85;
  animation: playhead 4.8s linear infinite;
}

.sound-copy {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  min-height: 740px;
  padding-top: 122px;
  padding-bottom: 95px;
  align-items: center;
}

.sound-copy .field-beat__index {
  grid-column: 1 / 3;
  align-self: start;
  color: #8aa3aa;
}

.sound-copy .field-beat__copy {
  grid-column: 8 / 13;
}

.sound-copy .field-beat__copy > p:last-child {
  color: #abc0c3;
}

.listen-button {
  position: absolute;
  bottom: 75px;
  left: var(--gutter);
  display: grid;
  grid-template-columns: 39px auto auto;
  gap: 16px;
  align-items: center;
  min-width: 320px;
  padding: 12px 16px 12px 11px;
  border: 1px solid #58717a;
  background: rgba(7, 29, 40, 0.68);
  color: var(--white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 220ms ease, background 220ms ease;
}

.listen-button:hover {
  border-color: var(--signal);
  background: rgba(18, 48, 60, 0.94);
}

.listen-button small {
  color: #78949c;
  font-size: 8px;
}

.listen-button__icon {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 50%;
  background: var(--signal);
}

.listen-button__icon i {
  width: 2px;
  height: 10px;
  display: block;
  background: var(--deep);
}

.listen-button__icon i:nth-child(2) {
  height: 17px;
}

.is-playing .listen-button__icon i {
  animation: equalize 600ms ease-in-out infinite alternate;
}

.is-playing .listen-button__icon i:nth-child(2) {
  animation-delay: -300ms;
}

.is-playing .listen-button__icon i:nth-child(3) {
  animation-delay: -120ms;
}

.subscribe {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  min-height: 620px;
  padding-top: clamp(108px, 10vw, 148px);
  padding-bottom: clamp(108px, 10vw, 148px);
  align-items: center;
  overflow: hidden;
  background: var(--signal);
  color: var(--deep);
}

.subscribe::before,
.subscribe::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(7, 29, 40, 0.2);
  border-radius: 50%;
}

.subscribe::before {
  width: 430px;
  height: 430px;
  top: -210px;
  right: 13%;
}

.subscribe::after {
  width: 620px;
  height: 620px;
  right: -360px;
  bottom: -390px;
}

.subscribe__stamp {
  position: absolute;
  right: 7vw;
  top: 43px;
  width: 140px;
  opacity: 0.65;
  animation: slow-spin 28s linear infinite;
}

.subscribe__stamp svg {
  width: 100%;
  overflow: visible;
}

.subscribe__stamp text {
  fill: currentColor;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.1px;
}

.subscribe__copy {
  grid-column: 1 / 7;
}

.subscribe h2 {
  margin-top: 38px;
  font-size: clamp(55px, 5.7vw, 87px);
}

.subscribe__copy > p:last-child {
  max-width: 510px;
  margin: 38px 0 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}

.signup-form {
  grid-column: 8 / 13;
  align-self: end;
  margin-bottom: 17px;
}

.signup-form label {
  display: block;
  margin-bottom: 17px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signup-form__row {
  display: flex;
  border-bottom: 2px solid var(--deep);
}

.signup-form input {
  flex: 1;
  min-width: 0;
  padding: 17px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 22px;
}

.signup-form input::placeholder {
  color: rgba(7, 29, 40, 0.58);
}

.signup-form input:focus-visible {
  outline: 0;
}

.signup-form__row:focus-within {
  box-shadow: 0 3px 0 var(--white);
}

.signup-form button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 12px 24px;
  border: 0;
  background: transparent;
  color: var(--deep);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signup-form button svg {
  transition: transform 220ms var(--ease);
}

.signup-form button:hover svg {
  transform: translateX(5px);
}

.form-status {
  min-height: 17px;
  margin: 13px 0 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 132px;
  padding: 30px var(--gutter);
  background: var(--deep);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: #819ca3;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.back-to-top {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 14px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.back-to-top svg {
  width: 35px;
  height: 35px;
  padding: 9px;
  border: 1px solid #526c75;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 240ms var(--ease), background 240ms ease;
}

.back-to-top:hover svg {
  transform: translateY(-5px);
  background: var(--signal);
  border-color: var(--signal);
  color: var(--deep);
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

body.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-grid .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.story-grid .reveal:nth-child(3) {
  transition-delay: 200ms;
}

@keyframes trace-line {
  to { stroke-dashoffset: 0; }
}

@keyframes scroll-pulse {
  0% { transform: translateX(-100%); }
  45%, 55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

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

@keyframes playhead {
  from { left: 3%; }
  to { left: 97%; }
}

@keyframes equalize {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1.2); }
}

@media (max-width: 1040px) {
  .hero__visual {
    right: 20px;
    width: 49vw;
  }

  .hero__copy {
    width: 54%;
  }

  .hero h1 {
    font-size: 10.7vw;
  }

  .section-head h2 {
    grid-column: 4 / 10;
  }

  .section-head > p:last-child {
    grid-column: 10 / 13;
    font-size: 15px;
  }

  .story-card:first-child {
    grid-column: span 5;
  }

  .story-card:nth-child(2) {
    grid-column: span 4;
  }

  .story-card:nth-child(3) {
    grid-column: span 3;
  }

  .story-card__body h3 {
    font-size: 27px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  html {
    scroll-padding-top: 68px;
  }

  .reading-meter {
    display: none;
  }

  .site-header {
    height: 68px;
    padding-inline: var(--gutter);
  }

  .site-header .wordmark {
    font-size: 11px;
    gap: 4px;
  }

  .site-header .wordmark i {
    width: 16px;
  }

  .site-nav {
    gap: 13px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .site-nav__subscribe {
    padding: 7px 8px;
  }

  .hero {
    min-height: 844px;
  }

  .hero__rule {
    top: 68px;
    right: var(--gutter);
    left: var(--gutter);
    width: auto;
    height: 1px;
  }

  .hero__copy {
    width: 100%;
    padding: 112px var(--gutter) 0;
  }

  .hero h1 {
    margin: 28px 0 24px;
    font-size: clamp(73px, 22vw, 90px);
    line-height: 0.75;
  }

  .hero h1 span:last-child {
    margin-left: 42px;
  }

  .hero h1 b {
    right: -0.18em;
  }

  .hero__deck {
    max-width: 310px;
    font-size: 17px;
    line-height: 1.36;
  }

  .desktop-break {
    display: none;
  }

  .circle-link {
    margin-top: 22px;
  }

  .circle-link svg {
    width: 37px;
    height: 37px;
    padding: 9px;
  }

  .hero__visual {
    top: auto;
    right: -11px;
    bottom: 48px;
    width: min(94vw, 460px);
  }

  .hero__visual figcaption {
    margin-inline: 15px 22px;
    font-size: 6.5px;
  }

  .hero__coordinate {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .stories {
    padding-top: 92px;
    padding-bottom: 105px;
  }

  .section-head {
    display: block;
    margin-bottom: 62px;
  }

  .section-head .section-kicker {
    margin-bottom: 34px;
  }

  .section-head h2,
  .notes-intro h2,
  .subscribe h2 {
    font-size: clamp(52px, 15vw, 64px);
  }

  .section-head > p:last-child {
    max-width: 320px;
    margin: 32px 0 0 40px;
    font-size: 16px;
  }

  .story-grid {
    display: block;
  }

  .story-card,
  .story-card:first-child,
  .story-card:nth-child(2),
  .story-card:nth-child(3) {
    width: 100%;
    margin: 0 0 66px;
  }

  .story-card:nth-child(2) {
    width: 88%;
    margin-left: auto;
  }

  .story-card:nth-child(3) {
    width: 82%;
  }

  .story-card__body {
    min-height: 178px;
    padding-top: 18px;
  }

  .story-card__body > p {
    margin-bottom: 25px;
  }

  .story-card__body h3,
  .story-card:nth-child(3) .story-card__body h3 {
    font-size: 29px;
  }

  .story-card__read {
    opacity: 1;
    transform: none;
  }

  .notes-intro {
    display: block;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .notes-intro__label {
    display: block;
    margin-bottom: 56px;
  }

  .notes-intro__label > span {
    display: block;
    margin-top: 13px;
  }

  .notes-intro__copy {
    display: block;
  }

  .notes-intro__copy p {
    margin: 32px 0 0 39px;
    font-size: 18px;
  }

  .field-beat__copy h3 {
    font-size: 42px;
  }

  .field-beat__copy > p:last-child {
    font-size: 17px;
  }

  .field-beat--days {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 60px;
    padding-bottom: 76px;
    align-items: stretch;
  }

  .field-beat--days .field-beat__index,
  .field-beat--distance .field-beat__index {
    width: 44%;
    margin-bottom: 55px;
  }

  .field-beat--days .field-beat__copy {
    order: 1;
  }

  .day-dial {
    order: 2;
    width: 95%;
    margin: 57px auto 0;
  }

  .field-beat--distance {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .field-beat--distance .field-beat__index {
    order: 1;
  }

  .field-beat--distance .field-beat__copy {
    order: 2;
  }

  .route-map {
    order: 3;
    width: calc(100% + 40px);
    margin: 65px 0 0 -20px;
  }

  .route-map__legend {
    padding-inline: 20px;
  }

  .field-beat--sound {
    min-height: 820px;
  }

  .sound-visual svg {
    top: 260px;
    left: -270px;
    width: 960px;
    height: 430px;
  }

  .sound-visual::after {
    background: linear-gradient(180deg, rgba(7, 29, 40, 0.92) 0, rgba(7, 29, 40, 0.15) 48%, rgba(7, 29, 40, 0.72) 100%);
  }

  .sound-visual__axis {
    display: none;
  }

  .sound-copy {
    display: block;
    min-height: 820px;
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .sound-copy .field-beat__index {
    width: 44%;
    margin-bottom: 78px;
  }

  .sound-copy .field-beat__copy {
    max-width: 350px;
  }

  .listen-button {
    right: 20px;
    bottom: 54px;
    left: 20px;
    min-width: 0;
  }

  .subscribe {
    display: block;
    min-height: 690px;
    padding-top: 88px;
    padding-bottom: 82px;
  }

  .subscribe__stamp {
    top: 35px;
    right: -20px;
    width: 100px;
  }

  .subscribe h2 {
    margin-top: 31px;
  }

  .subscribe__copy > p:last-child {
    max-width: 330px;
    margin-top: 31px;
    font-size: 16px;
  }

  .signup-form {
    margin-top: 72px;
  }

  .signup-form__row {
    display: block;
    border: 0;
  }

  .signup-form input {
    width: 100%;
    border-bottom: 2px solid var(--deep);
    font-size: 20px;
  }

  .signup-form__row:focus-within {
    box-shadow: none;
  }

  .signup-form input:focus-visible {
    box-shadow: 0 3px 0 var(--white);
  }

  .signup-form button {
    width: 100%;
    justify-content: space-between;
    margin-top: 12px;
    padding: 17px 0;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    min-height: 144px;
  }

  .site-footer p {
    grid-column: 1;
    grid-row: 2;
  }

  .back-to-top {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .back-to-top span {
    display: none;
  }
}

@media (max-width: 370px) {
  .site-nav {
    gap: 8px;
  }

  .hero h1 {
    font-size: 69px;
  }

  .hero__visual {
    bottom: 57px;
  }
}

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

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

  .hero__visual {
    transform: none !important;
  }

  body.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
