:root {
  --editorial-width: 1120px;
  --reading-width: 720px;
  --rule: #ffffff1a;
  --soft-blue: #8babf0;
}

.editorial-page {
  min-height: 100vh;
  background:
    radial-gradient(900px 420px at 50% -240px, #245aca1f, transparent 70%),
    var(--bg);
}

.editorial-page .site-nav__links a[aria-current="page"] {
  color: #fff;
}

.editorial-page .site-nav__links a:not([aria-current="page"]) {
  color: var(--text-secondary);
}

.journal-kicker,
.story-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.journal-kicker {
  color: #d8e3ff;
}

.story-meta {
  color: var(--text-tertiary);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8e3ff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #8babf066;
  text-underline-offset: 5px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.text-link:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.journal-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(84svh, 860px);
  overflow: hidden;
  background: #07100a;
}

.journal-hero__image,
.journal-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journal-hero__image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: editorial-image-settle 1.4s ease-out both;
}

.journal-hero__shade {
  background:
    linear-gradient(180deg, #05080633 0%, #0508060d 30%, #080d09cc 100%),
    linear-gradient(90deg, #050806cc 0%, #05080626 56%, #05080633 100%);
}

.journal-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--editorial-width);
  margin: 0 auto;
  padding: 180px 20px 72px;
}

.journal-hero__title {
  max-width: 850px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(44px, 7.3vw, 94px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.journal-hero__intro {
  max-width: 620px;
  margin-top: 28px;
  color: #e2e8e3;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
}

@keyframes editorial-image-settle {
  from {
    opacity: 0.45;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

.journal-section {
  max-width: var(--editorial-width);
  margin: 0 auto;
  padding: 128px 20px 0;
}

.section-label {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-story {
  display: grid;
  gap: 36px;
  padding-top: 34px;
}

.featured-story__image-link {
  display: block;
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  background: #e7e3dc;
}

.featured-story__image-link img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.featured-story__image-link:hover img {
  transform: scale(1.025);
}

.featured-story__copy {
  align-self: end;
  padding-bottom: 6px;
}

.featured-story__copy h2 {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.featured-story__copy h2 a {
  transition: color 0.18s ease;
}

.featured-story__copy h2 a:hover {
  color: #d8e3ff;
}

.featured-story__copy > p:not(.story-meta) {
  max-width: 570px;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

.featured-story__copy .text-link {
  margin-top: 28px;
}

.utility-feature {
  padding-top: 128px;
}

.utility-feature__layout {
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 52px 0 64px;
  border-bottom: 1px solid var(--rule);
}

.utility-feature h2 {
  max-width: 680px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.utility-feature__layout > div:first-child > p:not(.story-meta) {
  max-width: 610px;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

.utility-feature .button {
  margin-top: 30px;
}

.utility-feature__visual {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 22px;
  background: #07100a;
}

.utility-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
  transform: scale(1.015);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.utility-feature__visual:hover img {
  transform: scale(1.045);
}

.editorial-lanes {
  border-bottom: 1px solid var(--rule);
}

.editorial-lane {
  display: grid;
  gap: 14px;
  padding: 34px 0;
  border-top: 1px solid var(--rule);
}

.editorial-lane:first-child {
  border-top: 0;
}

.editorial-lane > span {
  color: var(--soft-blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-lane h2 {
  max-width: 700px;
  font-family: var(--font-display);
  font-size: clamp(25px, 3.8vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.editorial-lane p {
  max-width: 450px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.journal-cta {
  max-width: 840px;
  margin: 160px auto 140px;
  padding: 0 20px;
  text-align: center;
}

.journal-cta h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.journal-cta > p:not(.journal-kicker) {
  max-width: 580px;
  margin: 24px auto 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

.journal-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.editorial-footer {
  padding-top: 0;
}

/* Article */
.article-header,
.tool-header {
  max-width: 980px;
  margin: 0 auto;
  padding: 156px 20px 64px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 46px;
  color: var(--text-tertiary);
  font-size: 13px;
}

.breadcrumbs a:hover {
  color: var(--text-secondary);
}

.article-title,
.tool-title {
  max-width: 940px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(48px, 7.3vw, 88px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.article-dek,
.tool-dek {
  max-width: 700px;
  margin-top: 28px;
  color: var(--text-secondary);
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.55;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.article-byline img {
  border-radius: 9px;
}

.article-byline p {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.45;
}

.article-byline span {
  color: var(--text-tertiary);
}

.article-hero-image {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 24px;
}

.article-hero-image figcaption {
  margin-top: 12px;
  color: var(--text-tertiary);
  font-size: 12px;
  line-height: 1.5;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 68px;
  max-width: 1050px;
  margin: 0 auto;
  padding: 96px 20px 0;
}

.article-aside {
  display: none;
}

.article-toc {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-tertiary);
  font-size: 12px;
  line-height: 1.4;
}

.article-toc p {
  margin-bottom: 4px;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-toc a {
  transition: color 0.15s ease;
}

.article-toc a:hover {
  color: #fff;
}

.article-body {
  min-width: 0;
  max-width: var(--reading-width);
}

.article-body > p,
.article-body > ul,
.article-body > ol {
  margin-top: 24px;
  color: #d2d2d2;
  font-size: 17px;
  line-height: 1.78;
}

.article-body > h2,
.article-faq > h2,
.article-sources > h2 {
  margin-top: 76px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 50px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  scroll-margin-top: 100px;
}

.article-body > h3 {
  margin-top: 42px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.article-body a:not(.button):not(.text-link) {
  color: #cbd9fa;
  text-decoration: underline;
  text-decoration-color: #8babf066;
  text-underline-offset: 4px;
}

.article-body li {
  margin-top: 9px;
  padding-left: 6px;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.answer-box {
  padding: 28px 0 30px;
  border-top: 2px solid #fff;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 100px;
}

.answer-box__label {
  color: var(--soft-blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.answer-box p:last-child {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.32;
}

.process-line {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.process-line > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
}

.process-line span {
  grid-row: 1 / 3;
  color: var(--soft-blue);
  font-size: 12px;
  font-weight: 600;
}

.process-line strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}

.process-line small {
  margin-top: 3px;
  color: var(--text-tertiary);
}

.process-line > i {
  display: none;
}

.article-callout {
  margin-top: 34px;
  padding: 24px 0 24px 24px;
  border-left: 2px solid var(--soft-blue);
}

.article-callout strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.article-callout p {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.article-table-wrap {
  width: 100%;
  margin-top: 34px;
  overflow-x: auto;
  border-top: 1px solid #ffffff4d;
  border-bottom: 1px solid #ffffff4d;
}

.article-table-wrap table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}

.article-table-wrap th,
.article-table-wrap td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

.article-table-wrap th {
  color: var(--text-tertiary);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-table-wrap td {
  color: var(--text-secondary);
}

.article-table-wrap tr:last-child td {
  border-bottom: 0;
}

.article-table-wrap td:first-child {
  color: #fff;
}

.article-faq {
  margin-top: 84px;
}

.article-faq > h2 {
  margin-top: 0;
}

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

.article-faq summary {
  padding: 20px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
}

.article-faq details p {
  max-width: 640px;
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.article-sources {
  margin-top: 84px;
}

.article-sources > h2 {
  margin-top: 0;
}

.article-sources ul {
  margin-top: 24px;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.article-sources li {
  margin-top: 10px;
}

.inline-product {
  display: grid;
  gap: 22px;
  margin-top: 88px;
  padding: 40px 0;
  border-top: 1px solid #ffffff4d;
  border-bottom: 1px solid #ffffff4d;
}

.inline-product > img {
  border-radius: 16px;
}

.inline-product h2 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.inline-product > div > p:not(.story-meta) {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.inline-product__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.next-reading {
  max-width: var(--editorial-width);
  margin: 128px auto 140px;
  padding: 0 20px;
}

.next-reading > p {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-reading a {
  display: grid;
  grid-template-columns: 110px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}

.next-reading a span {
  color: var(--soft-blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.next-reading a strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.next-reading a i {
  color: var(--text-tertiary);
  font-style: normal;
  font-size: 20px;
  transition: transform 0.18s ease, color 0.18s ease;
}

.next-reading a:hover i {
  color: #fff;
  transform: translate(3px, -3px);
}

/* Tool */
.tool-header {
  padding-bottom: 52px;
  text-align: center;
}

.tool-header .breadcrumbs {
  justify-content: center;
}

.tool-title {
  max-width: none;
  font-size: clamp(72px, 13vw, 154px);
  line-height: 0.78;
}

.tool-dek {
  margin-right: auto;
  margin-left: auto;
}

.bpm-tool {
  max-width: 880px;
  margin: 0 auto;
  padding: 54px 20px 74px;
  border-top: 1px solid #ffffff4d;
  border-bottom: 1px solid #ffffff4d;
  text-align: center;
}

.bpm-readout {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  font-variant-numeric: tabular-nums;
}

.bpm-readout span {
  min-width: 2.7ch;
  font-family: var(--font-display);
  font-size: clamp(82px, 17vw, 170px);
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.bpm-readout small {
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.bpm-status {
  min-height: 24px;
  margin-top: 28px;
  color: var(--text-secondary);
  font-size: 14px;
}

.bpm-pad {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 620px);
  min-height: 180px;
  margin: 32px auto 0;
  overflow: hidden;
  border: 1px solid #ffffff33;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 115%, #245aca80, transparent 55%),
    #090909;
  box-shadow: inset 0 1px 0 #ffffff1f;
  touch-action: manipulation;
  user-select: none;
  transition: border-color 0.15s ease, transform 0.08s ease, background-color 0.15s ease;
}

.bpm-pad::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, #8babf033, transparent 45%);
  opacity: 0;
}

.bpm-pad:hover {
  border-color: #ffffff66;
}

.bpm-pad:active,
.bpm-pad.is-tapped {
  transform: scale(0.992);
}

.bpm-pad.is-tapped::after {
  animation: tap-flash 0.32s ease-out;
}

.bpm-pad span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.bpm-pad small {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  color: var(--text-tertiary);
  font-size: 12px;
}

@keyframes tap-flash {
  0% { opacity: 0.9; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(1.25); }
}

.bpm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin: 26px auto 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.bpm-stats p {
  padding: 16px 8px;
  border-right: 1px solid var(--rule);
}

.bpm-stats p:last-child {
  border-right: 0;
}

.bpm-stats span,
.bpm-stats small {
  display: block;
}

.bpm-stats span {
  font-family: var(--font-display);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}

.bpm-stats small {
  margin-top: 3px;
  color: var(--text-tertiary);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bpm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.bpm-actions button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.bpm-prompt {
  max-width: 620px;
  margin: 30px auto 0;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.bpm-prompt > p {
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bpm-prompt code {
  display: block;
  margin-top: 10px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
}

.bpm-prompt code span {
  color: #fff;
}

.bpm-prompt .text-link {
  margin-top: 14px;
}

.bpm-privacy {
  margin-top: 26px;
  color: var(--text-tertiary);
  font-size: 12px;
}

.tool-guide,
.tempo-reference,
.tool-explainer {
  max-width: var(--editorial-width);
  margin: 0 auto;
  padding: 128px 20px 0;
}

.tool-steps {
  display: grid;
  border-bottom: 1px solid var(--rule);
}

.tool-steps > div {
  padding: 30px 0;
  border-top: 1px solid var(--rule);
}

.tool-steps > div:first-child {
  border-top: 0;
}

.tool-steps span {
  color: var(--soft-blue);
  font-size: 12px;
  font-weight: 600;
}

.tool-steps h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.tool-steps p {
  max-width: 410px;
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.tempo-ranges {
  border-bottom: 1px solid var(--rule);
}

.tempo-ranges > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}

.tempo-ranges > div:first-child {
  border-top: 0;
}

.tempo-ranges span {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
}

.tempo-ranges p,
.tempo-reference__note {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.tempo-reference__note {
  max-width: 650px;
  margin-top: 22px;
}

.tempo-calculator {
  max-width: var(--editorial-width);
  margin: 0 auto;
  padding: 128px 20px 0;
}

.tempo-calculator__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 48px;
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--rule);
}

.tempo-calculator__copy {
  max-width: 510px;
}

.tempo-calculator__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.tempo-calculator__copy p {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

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

.tempo-calculator__form label {
  display: grid;
  gap: 7px;
}

.tempo-calculator__form label:last-child {
  grid-column: 1 / -1;
}

.tempo-calculator__form label > span {
  color: var(--text-tertiary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tempo-calculator__form input,
.tempo-calculator__form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #ffffff2b;
  border-radius: 10px;
  outline: 0;
  background: #090909;
  color: var(--text-primary);
  font: inherit;
}

.tempo-calculator__form input:focus,
.tempo-calculator__form select:focus {
  border-color: var(--soft-blue);
  box-shadow: 0 0 0 3px #245aca33;
}

.tempo-calculator__result {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.tempo-calculator__result span,
.tempo-calculator__result small {
  color: var(--text-secondary);
  font-size: 13px;
}

.tempo-calculator__result strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
  white-space: nowrap;
}

.tempo-calculator__result small {
  color: var(--text-tertiary);
  text-align: right;
}

.tool-explainer__copy {
  max-width: var(--reading-width);
  padding-top: 34px;
}

.tool-explainer__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.tool-explainer__copy p {
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.tool-explainer__copy code {
  color: #d8e3ff;
}

.tool-faq {
  max-width: var(--reading-width);
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
}

@media (min-width: 720px) {
  .featured-story {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 52px;
  }

  .utility-feature__layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  }

  .editorial-lane {
    grid-template-columns: 140px minmax(0, 1fr) minmax(240px, 0.55fr);
    gap: 34px;
    align-items: baseline;
  }

  .inline-product {
    grid-template-columns: 72px 1fr;
    gap: 28px;
  }

  .process-line {
    grid-template-columns: 1fr 28px 1fr 28px 1fr;
    align-items: center;
  }

  .process-line > i {
    display: block;
    height: 1px;
    background: var(--rule);
  }

  .tool-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .tool-steps > div {
    padding: 34px 28px;
    border-top: 0;
    border-left: 1px solid var(--rule);
  }

  .tool-steps > div:first-child {
    padding-left: 0;
    border-left: 0;
  }
}

@media (min-width: 960px) {
  .article-shell {
    grid-template-columns: 190px minmax(0, 720px);
  }

  .article-aside {
    display: block;
  }
}

@media (max-width: 719px) {
  .journal-hero {
    min-height: 76svh;
  }

  .journal-hero__content {
    padding-bottom: 48px;
  }

  .journal-section,
  .tool-guide,
  .tempo-reference,
  .tempo-calculator,
  .tool-explainer {
    padding-top: 96px;
  }

  .featured-story__image-link,
  .featured-story__image-link img {
    min-height: 270px;
  }

  .utility-feature__visual {
    aspect-ratio: 16 / 9;
  }

  .article-header,
  .tool-header {
    padding-top: 132px;
  }

  .article-shell {
    padding-top: 68px;
  }

  .next-reading a {
    grid-template-columns: 1fr 24px;
  }

  .next-reading a span {
    grid-column: 1 / -1;
  }

  .bpm-pad {
    min-height: 160px;
  }
}

@media (max-width: 480px) {
  .journal-hero__title br {
    display: none;
  }

  .section-label {
    grid-template-columns: 42px 1fr;
  }

  .article-title {
    font-size: 46px;
  }

  .article-hero-image {
    padding: 0;
  }

  .article-hero-image img {
    border-radius: 0;
  }

  .article-hero-image figcaption {
    padding: 0 16px;
  }

  .article-table-wrap {
    width: calc(100% + 20px);
  }

  .bpm-tool {
    padding-right: 16px;
    padding-left: 16px;
  }

  .bpm-stats span {
    font-size: 17px;
  }

  .tempo-ranges > div {
    grid-template-columns: 82px 1fr;
    gap: 16px;
  }

  .tempo-calculator__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tempo-calculator__result {
    display: grid;
    gap: 12px;
  }

  .tempo-calculator__result small {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journal-hero__image,
  .bpm-pad.is-tapped::after {
    animation: none;
  }

  .featured-story__image-link img,
  .utility-feature__visual img,
  .next-reading a i {
    transition: none;
  }
}
