:root {
  --bg: #f5f1ea;
  --surface: #eee8df;
  --surface-raised: #fbf8f3;
  --text: #141414;
  --muted: #67615b;
  --line: rgba(20, 20, 20, 0.1);
  --accent: #ff6a3d;
  --provider-orange: #ff935f;
  --provider-blue: #90bdc5;
  --provider-rose: #dc959d;
  --max: 960px;
  --radius-sm: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  background: var(--text);
  color: var(--bg);
  font-size: 0.88rem;
  font-weight: 700;
  transform: translateY(calc(-100% - 1rem));
}

.skip-link:focus {
  outline: 3px solid #8a3e27;
  outline-offset: 3px;
  transform: none;
}

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

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 2rem), var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  padding-bottom: 0.85rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
}

.site-menu {
  position: relative;
}

.site-menu summary {
  min-width: 4.8rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(251, 248, 243, 0.72);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

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

.site-menu summary::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 160ms ease;
}

.site-menu[open] summary::after {
  transform: translateY(0.12rem) rotate(225deg);
}

.site-menu summary:hover {
  background: var(--surface-raised);
}

.site-menu summary:focus-visible,
.brand-mark:focus-visible,
.appstore:focus-visible,
.review-dot:focus-visible,
.creator-cta:focus-visible,
.footer-nav a:focus-visible {
  outline: 3px solid #8a3e27;
  outline-offset: 3px;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(17rem, calc(100vw - 2rem));
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(251, 248, 243, 0.96);
  box-shadow: 0 22px 48px rgba(20, 20, 20, 0.13);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.menu-panel nav {
  display: grid;
  gap: 0.15rem;
}

.menu-panel a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.72rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.72rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.menu-icon {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  color: #928b83;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 150ms ease, transform 150ms ease;
}

.menu-panel a:hover .menu-icon,
.menu-panel a:focus-visible .menu-icon,
.menu-panel a[aria-current="page"] .menu-icon {
  color: #8a3e27;
  transform: translateY(-0.04rem);
}

.menu-panel a:hover,
.menu-panel a:focus-visible,
.menu-panel a[aria-current="page"] {
  background: var(--surface);
  color: var(--text);
  outline: none;
}

.menu-panel a:focus-visible {
  outline: 3px solid #8a3e27;
  outline-offset: 2px;
}

.hero {
  padding: 0.25rem 0 0.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 20rem);
  gap: 1.5rem;
  align-items: start;
}

.provider-chip {
  display: inline-block;
  padding: 0.12rem 0.42rem;
  border-radius: 0.5rem;
  line-height: 1.15;
}

.provider-chip--strava {
  background: color-mix(in srgb, var(--provider-orange) 22%, white);
  color: #9d4e2b;
}

.provider-chip--garmin {
  background: color-mix(in srgb, var(--provider-blue) 28%, white);
  color: #496b71;
}

.provider-chip--health {
  background: color-mix(in srgb, var(--provider-rose) 24%, white);
  color: #8a545a;
}

.feature-chip {
  display: inline-block;
  padding: 0.12rem 0.42rem;
  border-radius: 0.5rem;
  line-height: 1.15;
  background: rgba(20, 20, 20, 0.07);
  color: #5d5852;
}

.home-title {
  margin: 0;
  max-width: 7ch;
  font-size: clamp(2.5rem, 5.4vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero-copy {
  max-width: 29rem;
}

.lede {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: var(--muted);
  max-width: 27rem;
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 0.9rem;
  margin-top: 1rem;
}

.appstore {
  display: inline-block;
  border-radius: 0.55rem;
}

.appstore img {
  width: 10.4rem;
  height: auto;
}

.micro-note {
  display: none;
}

.home-reviews {
  width: min(100%, 29rem);
  margin-top: 0.4rem;
  padding: 0.65rem 0.85rem 0.7rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(251, 248, 243, 0.66);
}

.home-reviews-head {
  min-height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-reviews-head > p {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: #5d5751;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.review-stars {
  color: #a54e31;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.review-dots {
  display: flex;
  align-items: center;
}

.review-dot {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.review-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: var(--radius-sm);
  background: rgba(20, 20, 20, 0.25);
  transform: translate(-50%, -50%);
  transition: width 180ms ease, background-color 180ms ease;
}

.review-dot:hover::before,
.review-dot:focus-visible::before {
  background: #8a3e27;
}

.review-dot.is-active::before {
  width: 0.72rem;
  background: var(--text);
}

.review-dot:focus-visible {
  outline-width: 2px;
  outline-offset: 0;
}

.review-viewport {
  position: relative;
  min-height: 5rem;
  margin-top: 0.3rem;
}

.review-slide {
  margin: 0;
}

.review-slide:not(:first-child) {
  display: none;
}

.review-slide blockquote {
  margin: 0;
  color: #302c28;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.42;
}

.review-slide figcaption {
  display: flex;
  align-items: center;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.js .review-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-1rem);
  transition: opacity 320ms ease, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .review-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.js .review-slide.is-leaving {
  transform: translateX(1rem);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1350 / 2760;
}

.phone-screen {
  position: absolute;
  inset: 2.5% 5.333%;
  border-radius: clamp(2.25rem, 7vw, 2.7rem);
  -webkit-mask-image: url("/dash/iphone17pro-screen-mask.png");
  mask-image: url("/dash/iphone17pro-screen-mask.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
  background: #111;
}

.phone-main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}

.phone-bezel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: drop-shadow(0 14px 28px rgba(20, 20, 20, 0.12));
}

.footer {
  margin-top: auto;
  padding: 0.8rem 0 1.2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.65rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

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

/* What's New */

.updates-page {
  --muted: #4f4a45;
  overflow: clip;
}

.updates-page > .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(to bottom, var(--bg) 72%, rgba(245, 241, 234, 0));
}

.updates-main {
  padding-bottom: 1rem;
}

.chapter-rail {
  display: none;
}

.js .chapter-rail {
  position: fixed;
  z-index: 18;
  top: 50%;
  left: max(1rem, calc((100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transform: translateY(-50%);
}

.chapter-rail a {
  width: 12.5rem;
  min-height: 3.35rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  border-radius: var(--radius-sm);
}

.chapter-rail a::before {
  content: "";
  flex: 0 0 auto;
  width: 0.78rem;
  height: 0.22rem;
  border-radius: var(--radius-sm);
  background: rgba(20, 20, 20, 0.25);
  transition: width 180ms ease, background-color 180ms ease;
}

.chapter-rail a:hover::before,
.chapter-rail a:focus-visible::before {
  background: #9a5138;
}

.chapter-rail a:focus-visible:not([aria-current="location"])::before {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px #9a5138;
}

.chapter-rail a[aria-current="location"]::before {
  width: 1.35rem;
  background: var(--text);
}

.chapter-rail-copy {
  min-width: 0;
  display: grid;
  gap: 0.08rem;
  color: #5f5953;
  line-height: 1.15;
  transition: color 180ms ease, transform 180ms ease;
}

.chapter-rail-copy strong {
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chapter-rail-copy time {
  color: #716a63;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.chapter-rail a:hover .chapter-rail-copy,
.chapter-rail a:focus-visible .chapter-rail-copy,
.chapter-rail a[aria-current="location"] .chapter-rail-copy {
  color: var(--text);
  transform: translateX(0.12rem);
}

.chapter-rail a[aria-current="location"] .chapter-rail-copy time {
  color: #8d4a33;
}

.chapter-rail a[aria-current="location"]:focus-visible::before {
  background: #8a3e27;
}

.chapter-rail a:focus-visible {
  outline: none;
}

.update-chapter {
  min-height: calc(100svh - 4.9rem);
  display: grid;
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 4.9rem;
  scroll-snap-align: start;
}

.chapter-frame {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: start;
}

.chapter-media {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: #e9e3da;
  box-shadow: 0 22px 58px rgba(20, 20, 20, 0.11);
}

.chapter-media img,
.chapter-media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.chapter-media video {
  background: #e9e3da;
}

.chapter-media--phone {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.chapter-phone-stage {
  flex: 0 0 auto;
  width: clamp(15.5rem, 21vw, 20.5rem);
}

.chapter-media--phone .phone-main,
.chapter-media--phone .phone-bezel {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.chapter-media--phone .phone-main {
  object-fit: cover;
}

.chapter-media--phone .phone-bezel {
  position: absolute;
  filter: drop-shadow(0 1.35rem 2.6rem rgba(20, 20, 20, 0.18));
}

.chapter-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 32rem;
}

.chapter-date {
  margin: 0.7rem 0 0;
  color: #8d4a33;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.chapter-title {
  margin: 0;
  font-size: clamp(3rem, 5.1vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.chapter-details > div {
  overflow: hidden;
}

.chapter-details p {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.chapter-highlights {
  display: grid;
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  padding: 1.05rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.chapter-highlights li {
  position: relative;
  padding-left: 1.25rem;
  color: #3e3a36;
  font-size: 1rem;
  line-height: 1.5;
}

.chapter-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.chapter-details .chapter-note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.js .update-chapter .chapter-media {
  opacity: 0.12;
  clip-path: inset(14% 0 14% 0 round 1.35rem);
  transform: translateY(1.8rem) scale(0.985);
  transition:
    opacity 520ms ease,
    clip-path 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .update-chapter .chapter-title,
.js .update-chapter .chapter-date {
  opacity: 0.28;
  transform: translateY(0.7rem);
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .update-chapter .chapter-details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(1rem);
  transition:
    grid-template-rows 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 380ms ease 80ms,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .update-chapter.is-active .chapter-media {
  opacity: 1;
  clip-path: inset(0 round 1.35rem);
  transform: none;
}

.js .update-chapter .chapter-media--phone,
.js .update-chapter.is-active .chapter-media--phone {
  clip-path: none;
}

.js .update-chapter.is-active .chapter-title,
.js .update-chapter.is-active .chapter-date {
  opacity: 1;
  transform: none;
}

.js .update-chapter.is-active .chapter-details {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: none;
}

.updates-final {
  min-height: 72svh;
  display: grid;
  place-items: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
  text-align: center;
  scroll-snap-align: start;
}

.updates-final h2 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.updates-final p {
  max-width: 34rem;
  margin: 1.2rem auto 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Creator offer */

.creator-page {
  --muted: #4f4a45;
}

.creator-main {
  min-height: 0;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
}

.creator-hero {
  min-height: 0;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 19rem);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-top: clamp(1.75rem, 4vh, 3rem);
  padding-bottom: clamp(1.75rem, 4vh, 3rem);
}

.creator-copy {
  max-width: 34rem;
}

.creator-eyebrow {
  margin: 0 0 0.8rem;
  color: #8d4a33;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-title {
  max-width: 12.5ch;
  margin: 0;
  font-size: clamp(2.8rem, 4.3vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.creator-lede {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.52;
}

.creator-facts {
  margin: 1rem 0 0;
  color: #3d3935;
  font-size: 0.82rem;
  font-weight: 650;
}

.creator-cta {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.15rem;
  padding: 0.72rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--bg);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease;
}

.creator-cta:hover {
  background: #2b2825;
  transform: translateY(-0.08rem);
}

.creator-visual {
  width: 19rem;
  justify-self: end;
}

.creator-pass-stack {
  position: relative;
  width: 100%;
  height: 18rem;
}

.creator-pass {
  position: absolute;
  width: 17.5rem;
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  overflow: hidden;
  border-radius: 1.45rem;
  box-shadow: 0 1.5rem 3.2rem rgba(20, 20, 20, 0.13);
}

.creator-pass::after {
  content: "";
  position: absolute;
  right: -3.6rem;
  bottom: -4.8rem;
  width: 10rem;
  height: 10rem;
  border: 1.6rem solid rgba(255, 106, 61, 0.2);
  border-radius: 50%;
}

.creator-pass--you {
  z-index: 2;
  top: 0;
  left: 0;
  background: linear-gradient(145deg, #121110, #292522);
  color: #fbf8f3;
  transform: rotate(-1.5deg);
}

.creator-pass--friend {
  right: 0.25rem;
  bottom: 0;
  border: 1px solid rgba(20, 20, 20, 0.11);
  background: #ebe2d7;
  color: var(--text);
  transform: rotate(1.5deg);
}

.creator-pass-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.creator-pass-brand img {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.52rem;
}

.creator-pass strong {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-size: 2.35rem;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.creator-pass-owner {
  position: relative;
  z-index: 1;
  margin-top: 0.45rem;
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Legal */

.legal-page {
  --muted: #4f4a45;
}

.legal-main {
  padding: clamp(2.75rem, 6vw, 5.5rem) 0 clamp(4.5rem, 9vw, 8rem);
}

.legal-document {
  display: grid;
  justify-items: start;
}

.legal-header,
.legal-content {
  width: min(100%, 46rem);
}

.legal-header {
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.legal-title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.legal-updated {
  margin: 1rem 0 0;
  color: #8d4a33;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-content {
  padding-top: clamp(1.7rem, 3.5vw, 2.8rem);
  color: #3e3934;
  font-size: 1.06rem;
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 1.25rem;
}

.legal-content h2,
.legal-content h3 {
  color: var(--text);
  scroll-margin-top: 5.5rem;
}

.legal-content h2 {
  margin: 3.4rem 0 1rem;
  font-size: clamp(1.55rem, 2.7vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.legal-content h3 {
  margin: 2.1rem 0 0.75rem;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.legal-content ul {
  margin: 0.25rem 0 1.4rem;
  padding-left: 1.35rem;
}

.legal-content li {
  padding-left: 0.25rem;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.legal-content strong {
  color: #2d2925;
  font-weight: 700;
}

.legal-content code {
  padding: 0.12rem 0.32rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--surface);
  color: #39342f;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

.legal-content a {
  text-decoration: underline;
  text-decoration-color: rgba(141, 74, 51, 0.55);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.legal-content a:hover {
  color: #8d4a33;
}

.legal-content a:focus-visible {
  border-radius: 0.2rem;
  outline: 3px solid #8a3e27;
  outline-offset: 3px;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 17.5rem;
  }

  .home-title {
    max-width: 9ch;
    font-size: 4rem;
  }

  .footer {
    padding-top: 0.35rem;
    padding-bottom: 0.55rem;
  }

  .page:has(.home-reviews) .footer-inner {
    padding-top: 0.15rem;
  }
}

@media (min-width: 981px) {
  .home-reviews {
    transform: translateY(0.25rem);
  }
}

@media (min-width: 761px) {
  html:has(.updates-page) {
    scroll-snap-type: y proximity;
  }
}

html.is-aligning-chapter {
  scroll-behavior: auto;
  scroll-snap-type: none !important;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .chapter-frame {
    grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
  }
}

@media (min-width: 1180px) {
  html.can-snap-chapters:has(.updates-page) {
    scroll-snap-type: y mandatory;
  }

  .js .chapter-rail {
    top: calc(4.9rem + clamp(2.5rem, 5vw, 4.5rem));
    transform: none;
  }

  .chapter-rail a {
    align-items: flex-start;
  }

  .chapter-rail a::before {
    margin-top: 0.35rem;
  }

}

@media (min-width: 1180px) and (prefers-reduced-motion: reduce) {
  html:has(.updates-page) {
    scroll-snap-type: none;
  }
}

@media (max-width: 1199px) {
  .chapter-rail a {
    width: 2.75rem;
    min-height: 2.75rem;
    gap: 0;
  }

  .chapter-rail-copy {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1519px) {
  .js .chapter-rail {
    left: max(0.25rem, calc((100vw - var(--max)) / 2 - 13.75rem));
  }

  .chapter-rail a {
    width: min(12.5rem, calc((100vw - var(--max)) / 2 - 1.25rem));
    min-height: 3.35rem;
    gap: 0.25rem;
  }

  .chapter-rail a::before {
    width: 0.55rem;
  }

  .chapter-rail a[aria-current="location"]::before {
    width: 0.85rem;
  }

  .chapter-rail a:hover .chapter-rail-copy,
  .chapter-rail a:focus-visible .chapter-rail-copy,
  .chapter-rail a[aria-current="location"] .chapter-rail-copy {
    transform: none;
  }

  .chapter-rail-copy strong {
    overflow: visible;
    font-size: clamp(0.68rem, calc(1.6vw - 0.55rem), 0.8rem);
    line-height: 1.05;
    text-overflow: clip;
    white-space: normal;
  }

  .chapter-rail-copy time {
    font-size: clamp(0.58rem, calc(1vw - 0.2rem), 0.68rem);
  }
}

@media (max-width: 1199px) {
  .js .chapter-rail {
    left: max(0rem, calc((100vw - var(--max)) / 2 - 1rem));
    gap: 0;
  }
}

@media (min-width: 761px) and (max-width: 1239px) {
  .site-header,
  .hero-grid,
  .creator-hero,
  .legal-document,
  .footer-inner,
  .feature-chapters .chapter-frame {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 1520px) {
  .js .chapter-rail {
    left: max(1rem, calc((100vw - var(--max)) / 2 - 13.75rem));
  }

  .chapter-rail a {
    width: min(12.5rem, calc((100vw - var(--max)) / 2 - 1.25rem));
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .site-header {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .hero {
    padding: 0 0 0.35rem;
  }

  .hero-grid {
    gap: 0.9rem;
  }

  .creator-main {
    display: block;
    flex: 1 0 auto;
  }

  .creator-hero {
    min-height: auto;
    flex: none;
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .creator-title {
    font-size: clamp(2.7rem, 13vw, 3.6rem);
  }

  .creator-visual {
    width: min(100%, 20rem);
    justify-self: start;
  }

  .creator-pass-stack {
    height: 20.5rem;
  }

  .creator-pass {
    width: calc(100% - 0.75rem);
    min-height: 11rem;
  }

  .home-title {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .cta-row {
    align-items: flex-start;
  }

  .micro-note {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    align-self: flex-end;
    justify-content: flex-end;
  }

  .legal-main {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }

  .legal-title {
    font-size: clamp(2.7rem, 13vw, 3.7rem);
  }

  .legal-content {
    font-size: 1rem;
    line-height: 1.68;
  }

  .legal-content h2 {
    margin-top: 2.75rem;
  }

  .updates-page > .site-header {
    background: rgba(245, 241, 234, 0.93);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .js .chapter-rail {
    left: auto;
    right: 0.35rem;
  }

  .chapter-rail a {
    justify-content: flex-end;
  }

  .update-chapter {
    min-height: calc(100svh - 4.35rem);
    padding: 0 0 3.2rem;
    scroll-margin-top: 4.35rem;
  }

  .chapter-frame {
    grid-template-columns: 1fr;
    gap: 1.7rem;
    padding-right: 3rem;
  }

  .chapter-media {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 34rem);
  }

  .chapter-media--phone {
    justify-self: center;
  }

  .chapter-phone-stage {
    width: min(72vw, 18rem);
  }

  .chapter-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 34rem;
  }

  .chapter-title {
    font-size: clamp(2.4rem, 12vw, 3rem);
    max-width: 10ch;
  }

  .js .update-chapter .chapter-details {
    transition: opacity 380ms ease 80ms, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (max-width: 360px) {
  .review-viewport {
    min-height: 6.1rem;
  }
}
