:root {
  --xy-bg: #ffffff;
  --xy-panel: #f6f6f7;
  --xy-ink: #0a0a0a;
  --xy-muted: #565c63;
  --xy-line: #e3e3e6;
  --xy-line-soft: #ededf0;
  --xy-accent: #0b57d0;
  --xy-accent-deep: #08409c;
  --xy-radius: 4px;
  --xy-shell: 1120px;
  --xy-column: 720px;
  --xy-mono: "SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --xy-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--xy-bg);
  color: var(--xy-ink);
  font-family: var(--xy-sans);
  font-size: 17px;
  line-height: 1.6;
}
h1, h2, h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
}
h3 {
  font-size: 1.14rem;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 1.05em;
}
a {
  color: var(--xy-accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--xy-ink);
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--xy-accent);
  outline-offset: 2px;
  border-radius: 2px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}

.xy-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--xy-ink);
  color: #ffffff;
  padding: 12px 18px;
  z-index: 40;
}
.xy-skip:focus {
  left: 12px;
  top: 12px;
}

.xy-shell {
  width: 100%;
  max-width: var(--xy-shell);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.xy-head {
  border-bottom: 1px solid var(--xy-line-soft);
  background: var(--xy-bg);
}
.xy-head__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.xy-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  color: var(--xy-ink);
  text-decoration: none;
}
.xy-brand__tail {
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--xy-muted);
}

.xy-burger {
  appearance: none;
  border: 1px solid var(--xy-line);
  background: var(--xy-bg);
  color: var(--xy-ink);
  font: inherit;
  font-size: 0.9rem;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: var(--xy-radius);
  cursor: pointer;
}
.xy-burger:hover {
  border-color: var(--xy-ink);
}

.xy-nav {
  display: none;
  flex: 0 0 100%;
  padding-bottom: 20px;
}
.xy-nav.is-open {
  display: block;
}
.xy-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.xy-nav a {
  display: inline-block;
  padding: 11px 0;
  min-height: 44px;
  color: var(--xy-ink);
  text-decoration: none;
  font-size: 0.98rem;
}
.xy-nav a:hover {
  color: var(--xy-accent-deep);
  text-decoration: underline;
}

.xy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 26px;
  background: var(--xy-ink);
  color: #ffffff;
  border: 1px solid var(--xy-ink);
  border-radius: var(--xy-radius);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}
.xy-btn:hover {
  background: var(--xy-accent);
  border-color: var(--xy-accent);
  color: #ffffff;
}
.xy-btn--ghost {
  background: transparent;
  color: var(--xy-ink);
  border-color: var(--xy-line);
}
.xy-btn--ghost:hover {
  background: transparent;
  color: var(--xy-accent-deep);
  border-color: var(--xy-accent);
}

.xy-crumbs {
  padding-top: 22px;
  font-size: 0.9rem;
  color: var(--xy-muted);
}
.xy-crumbs a {
  color: var(--xy-muted);
}

.xy-hero {
  padding-top: clamp(44px, 8vw, 92px);
  padding-bottom: clamp(40px, 7vw, 76px);
}
.xy-hero__kind {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--xy-muted);
  margin: 0 0 22px;
}
.xy-hero__lede {
  max-width: 640px;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--xy-muted);
  margin-top: 28px;
}
.xy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.xy-hero__sign {
  margin-top: 30px;
  font-size: 0.92rem;
  color: var(--xy-muted);
}
.xy-hero__sign b {
  font-weight: 500;
  color: var(--xy-ink);
}

.xy-spotlight {
  padding-top: clamp(44px, 7vw, 84px);
  display: grid;
  gap: 26px;
}
.xy-spotlight__art {
  margin: 0;
}
.xy-spotlight__art img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  border: 1px solid var(--xy-line);
  border-radius: var(--xy-radius);
}
.xy-spotlight__art figcaption {
  margin-top: 10px;
  max-width: 440px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--xy-muted);
}
.xy-spotlight__text h2 {
  margin-bottom: 16px;
}
.xy-spotlight__text p {
  margin: 0 0 14px;
}
.xy-block {
  padding-top: clamp(56px, 9vw, 112px);
  padding-bottom: clamp(8px, 2vw, 20px);
}
.xy-block--tail {
  padding-bottom: clamp(56px, 9vw, 104px);
}
.xy-block--raised {
  background: var(--xy-panel);
  padding-bottom: clamp(56px, 9vw, 104px);
  margin-top: clamp(56px, 9vw, 112px);
}
.xy-block--raised .xy-block__head {
  padding-top: 0;
}
.xy-block__head {
  max-width: 700px;
  margin-bottom: 34px;
}
.xy-block__head p {
  color: var(--xy-muted);
  margin-bottom: 0;
  margin-top: 14px;
}

.xy-prose {
  max-width: var(--xy-column);
}
.xy-prose h3 {
  margin-top: 34px;
  margin-bottom: 10px;
}

.xy-list {
  margin: 0 0 20px;
  padding-left: 20px;
}
.xy-list li {
  margin-bottom: 9px;
}

.xy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.xy-steps__item {
  position: relative;
  padding-left: 62px;
  padding-bottom: clamp(44px, 6vw, 68px);
}
.xy-steps__item::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 0;
  width: 1px;
  background: var(--xy-line);
}
.xy-steps__item:last-child::before {
  display: none;
}
.xy-steps__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--xy-line);
  border-radius: var(--xy-radius);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  color: var(--xy-accent-deep);
  background: var(--xy-bg);
}
.xy-steps__body {
  max-width: var(--xy-column);
  padding-top: 6px;
}
.xy-steps__body h2 {
  margin-bottom: 14px;
}
.xy-steps__body p:last-child {
  margin-bottom: 0;
}

.xy-zig {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
}
.xy-zig__row {
  display: grid;
  gap: 26px;
  align-items: start;
}
.xy-zig__text {
  max-width: 640px;
}
.xy-zig__text h2 {
  margin-bottom: 16px;
}
.xy-zig__text p:last-child {
  margin-bottom: 0;
}
.xy-cards {
  display: grid;
  gap: 26px;
  align-items: start;
}
.xy-cards__item {
  border: 1px solid var(--xy-line-soft);
  border-radius: var(--xy-radius);
  padding: 26px 24px;
}
.xy-cards__item h3 {
  margin-bottom: 10px;
}
.xy-cards__item p:last-child {
  margin-bottom: 0;
}
.xy-cards__tag {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--xy-muted);
  margin-bottom: 12px;
}
.xy-bento {
  display: grid;
  gap: 18px;
}
.xy-bento__cell {
  background: var(--xy-panel);
  border-radius: var(--xy-radius);
  padding: 28px 24px;
}
.xy-bento__cell h3 {
  margin-bottom: 10px;
}
.xy-bento__cell p:last-child {
  margin-bottom: 0;
}
.xy-bento__big {
  display: block;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.xy-bento__cell--plain {
  background: transparent;
  border: 1px solid var(--xy-line);
}

.xy-split {
  display: grid;
  gap: 34px;
}
.xy-split__aside h2 {
  margin-bottom: 16px;
}
.xy-split__aside p {
  color: var(--xy-muted);
}
.xy-split__flow > section {
  margin-bottom: clamp(38px, 5vw, 58px);
}
.xy-split__flow h3 {
  margin-bottom: 10px;
}

.xy-comp {
  display: grid;
  gap: 30px;
}
.xy-comp__lead {
  max-width: 660px;
}
.xy-comp__note {
  border-left: 2px solid var(--xy-accent);
  padding-left: 18px;
  max-width: 620px;
  color: var(--xy-muted);
}
.xy-comp__note p:last-child {
  margin-bottom: 0;
}

.xy-cover {
  padding-top: clamp(52px, 9vw, 108px);
  padding-bottom: clamp(46px, 8vw, 88px);
  border-bottom: 1px solid var(--xy-line-soft);
}
.xy-cover__line {
  max-width: 560px;
  font-size: 1.18rem;
  color: var(--xy-muted);
  margin-top: 26px;
}
.xy-cover__actions {
  margin-top: 32px;
}

.xy-body {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(44px, 7vw, 78px);
}
.xy-body h2 {
  margin-top: clamp(38px, 5vw, 58px);
  margin-bottom: 14px;
}
.xy-body h2:first-child {
  margin-top: 0;
}

.xy-offset {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 76px);
}
.xy-offset__part h2 {
  margin-bottom: 16px;
}
.xy-offset__part p:last-child {
  margin-bottom: 0;
}

.xy-flow > section {
  padding-top: clamp(50px, 8vw, 96px);
}
.xy-flow > section:first-child {
  padding-top: 0;
}
.xy-flow h2 {
  margin-bottom: 18px;
}

.xy-band {
  padding-top: clamp(52px, 8vw, 98px);
  padding-bottom: clamp(52px, 8vw, 98px);
}
.xy-band--tint {
  background: var(--xy-panel);
}
.xy-band__head {
  max-width: 680px;
  margin-bottom: 30px;
}
.xy-band__head p {
  color: var(--xy-muted);
  margin-top: 14px;
  margin-bottom: 0;
}

.xy-figure {
  margin: 28px 0;
  max-width: 260px;
}
.xy-figure--wide {
  max-width: 300px;
}
.xy-figure img {
  border-radius: var(--xy-radius);
  border: 1px solid var(--xy-line-soft);
}
.xy-figure figcaption {
  margin-top: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--xy-muted);
}
.xy-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.xy-gallery__item img {
  border-radius: var(--xy-radius);
  border: 1px solid var(--xy-line-soft);
  width: 100%;
}
.xy-gallery__cap {
  display: block;
  margin-top: 9px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--xy-muted);
}
.xy-scroll {
  overflow-x: auto;
  margin: 26px 0 12px;
  border: 1px solid var(--xy-line-soft);
  border-radius: var(--xy-radius);
}
.xy-table {
  min-width: 620px;
  font-size: 0.95rem;
}
.xy-table caption {
  text-align: left;
  padding: 16px 18px 14px;
  font-size: 0.92rem;
  color: var(--xy-muted);
  border-bottom: 1px solid var(--xy-line-soft);
}
.xy-table th, .xy-table td {
  text-align: left;
  padding: 12px 18px;
  vertical-align: top;
  border-bottom: 1px solid var(--xy-line-soft);
}
.xy-table thead th {
  font-weight: 500;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--xy-muted);
  white-space: nowrap;
}
.xy-table tbody th {
  font-weight: 500;
}
.xy-table tbody tr:last-child th, .xy-table tbody tr:last-child td {
  border-bottom: 0;
}
.xy-source {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--xy-muted);
  max-width: 640px;
}
.xy-faq {
  max-width: var(--xy-column);
  border-top: 1px solid var(--xy-line-soft);
}
.xy-faq details {
  border-bottom: 1px solid var(--xy-line-soft);
}
.xy-faq summary {
  cursor: pointer;
  padding: 19px 0;
  font-weight: 500;
  min-height: 44px;
  list-style: none;
}
.xy-faq summary::-webkit-details-marker {
  display: none;
}
.xy-faq summary::after {
  content: "+";
  float: right;
  color: var(--xy-accent-deep);
  font-weight: 400;
}
.xy-faq details[open] summary::after {
  content: "\2212";
}
.xy-faq p {
  margin-top: 0;
  padding-bottom: 18px;
  color: var(--xy-muted);
}
.xy-dl {
  margin: 0;
  display: grid;
  gap: 0;
}
.xy-dl dt {
  font-weight: 500;
  padding-top: 18px;
  border-top: 1px solid var(--xy-line-soft);
}
.xy-dl dd {
  margin: 6px 0 18px;
  color: var(--xy-muted);
}
.xy-worked {
  max-width: 680px;
  background: var(--xy-panel);
  border-radius: var(--xy-radius);
  padding: 24px 22px;
  font-family: var(--xy-mono);
  font-size: 0.88rem;
  line-height: 1.75;
  white-space: pre-wrap;
  overflow-x: auto;
  margin: 0;
}
.xy-diagram {
  max-width: 640px;
  margin: 26px 0 10px;
}
.xy-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}
.xy-limits {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 680px;
}
.xy-limits li {
  padding: 16px 0 16px 26px;
  border-bottom: 1px solid var(--xy-line-soft);
  position: relative;
}
.xy-limits li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--xy-accent-deep);
}
.xy-limits li:first-child {
  border-top: 1px solid var(--xy-line-soft);
}
.xy-myth {
  display: grid;
  gap: 22px;
  max-width: 760px;
}
.xy-myth__pair {
  border-left: 2px solid var(--xy-line);
  padding-left: 20px;
}
.xy-myth__said {
  font-weight: 500;
  margin-bottom: 6px;
}
.xy-myth__real {
  color: var(--xy-muted);
  margin-bottom: 0;
}
.xy-nums {
  display: grid;
  gap: 22px;
}
.xy-nums__cell {
  border-top: 2px solid var(--xy-ink);
  padding-top: 14px;
}
.xy-nums__val {
  display: block;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.xy-nums__key {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--xy-muted);
}
.xy-slips {
  counter-reset: xyslip;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 700px;
}
.xy-slips li {
  counter-increment: xyslip;
  position: relative;
  padding: 0 0 22px 40px;
}
.xy-slips li::before {
  content: counter(xyslip, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.82rem;
  color: var(--xy-muted);
  font-variant-numeric: tabular-nums;
}
.xy-slips b {
  font-weight: 500;
}
.xy-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.xy-index__item {
  border-top: 1px solid var(--xy-line-soft);
}
.xy-index__item:last-child {
  border-bottom: 1px solid var(--xy-line-soft);
}
.xy-index a {
  display: block;
  padding: 18px 0;
  text-decoration: none;
  color: var(--xy-ink);
}
.xy-index a:hover {
  color: var(--xy-accent-deep);
}
.xy-index__name {
  display: block;
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.xy-index__hint {
  display: block;
  font-size: 0.92rem;
  color: var(--xy-muted);
}

.xy-cta {
  padding-top: clamp(60px, 9vw, 112px);
  padding-bottom: clamp(60px, 9vw, 112px);
  border-top: 1px solid var(--xy-line-soft);
}
.xy-cta__box {
  max-width: 660px;
}
.xy-cta__box h2 {
  margin-bottom: 18px;
}
.xy-cta__box p {
  color: var(--xy-muted);
}
.xy-cta__mail {
  margin-top: 26px;
}
.xy-cta__fine {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 0.9rem;
}
.xy-foot {
  background: var(--xy-panel);
  padding-top: 52px;
  padding-bottom: 52px;
  font-size: 0.94rem;
}
.xy-foot__grid {
  display: grid;
  gap: 30px;
}
.xy-foot h2 {
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--xy-muted);
  font-weight: 500;
  margin-bottom: 14px;
}
.xy-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.xy-foot a {
  display: inline-block;
  padding: 11px 0;
  min-height: 44px;
  color: var(--xy-ink);
  text-decoration: none;
}
.xy-foot a:hover {
  text-decoration: underline;
  color: var(--xy-accent-deep);
}
.xy-foot__owner p {
  margin-bottom: 8px;
  color: var(--xy-muted);
}
.xy-foot__owner b {
  color: var(--xy-ink);
  font-weight: 500;
}
.xy-foot__owner a {
  padding: 0;
  min-height: 0;
  color: var(--xy-accent-deep);
  text-decoration: underline;
}
.xy-foot__rule {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--xy-line);
  color: var(--xy-muted);
  font-size: 0.88rem;
}
.xy-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: var(--xy-bg);
  border-top: 1px solid var(--xy-line);
  padding: 20px;
  display: none;
}
.xy-cookie.is-open {
  display: block;
}
.xy-cookie__inner {
  max-width: var(--xy-shell);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.xy-cookie__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--xy-muted);
  max-width: 660px;
}
.xy-cookie__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.xy-cookie__row .xy-btn {
  flex: 1 1 auto;
}
.xy-legal {
  max-width: 720px;
  padding-top: clamp(36px, 6vw, 64px);
  padding-bottom: clamp(50px, 8vw, 88px);
}
.xy-legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 18px;
}
.xy-legal h2 {
  font-size: 1.25rem;
  margin-top: 38px;
  margin-bottom: 12px;
}
.xy-legal__stamp {
  color: var(--xy-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.xy-legal ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.xy-legal li {
  margin-bottom: 8px;
}
.xy-legal .xy-scroll {
  margin-top: 20px;
}
.xy-miss {
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(60px, 10vw, 120px);
  max-width: 640px;
}
.xy-miss p {
  color: var(--xy-muted);
  font-size: 1.1rem;
}

@media (min-width: 620px) {
  .xy-nums {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
  }
  .xy-cookie__row .xy-btn {
    flex: 0 0 auto;
  }
  .xy-gallery {
    gap: 26px;
  }
}

@media (min-width: 760px) {
  body {
    font-size: 17.5px;
  }
  .xy-shell {
    padding-left: 32px;
    padding-right: 32px;
  }
  .xy-figure {
    max-width: 360px;
  }
  .xy-figure--wide {
    max-width: 460px;
  }
  .xy-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
  .xy-dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }
  .xy-foot__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }
  .xy-cookie__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
  .xy-myth {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 34px;
  }
  .xy-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .xy-spotlight {
    grid-template-columns: 440px 1fr;
    align-items: center;
    gap: 48px;
  }
  .xy-head__bar {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .xy-burger {
    display: none;
  }
  .xy-nav {
    display: block;
    flex: 0 1 auto;
    padding-bottom: 0;
  }
  .xy-nav ul {
    flex-direction: row;
    gap: 26px;
    align-items: center;
  }
  .xy-nav a {
    padding: 6px 0;
    min-height: 0;
  }
  .xy-zig__row {
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: center;
  }
  .xy-zig__row--flip .xy-zig__text {
    order: 2;
  }
  .xy-zig__row--flip .xy-zig__media {
    order: 1;
  }
  .xy-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xy-cards__item--tall {
    grid-row: span 2;
  }
  .xy-bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
  .xy-bento__cell--w2 {
    grid-column: span 2;
  }
  .xy-bento__cell--w3 {
    grid-column: span 3;
  }
  .xy-bento__cell--h2 {
    grid-row: span 2;
  }
  .xy-split {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .xy-split__aside {
    position: sticky;
    top: 40px;
  }
  .xy-offset {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .xy-offset__part--a {
    grid-column: 1 / span 7;
  }
  .xy-offset__part--b {
    grid-column: 5 / span 8;
  }
  .xy-offset__part--c {
    grid-column: 2 / span 9;
  }
  .xy-offset__part--d {
    grid-column: 4 / span 7;
  }
  .xy-figure {
    max-width: 380px;
  }
  .xy-figure--wide {
    max-width: 500px;
  }
  .xy-steps__item {
    padding-left: 86px;
  }
  .xy-steps__num {
    width: 50px;
    height: 50px;
  }
  .xy-steps__item::before {
    left: 25px;
    top: 54px;
  }
  .xy-hero__lede {
    font-size: 1.3rem;
  }
}

@media (min-width: 1080px) {
  .xy-comp {
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start;
  }
  .xy-comp__lead {
    grid-column: 1;
  }
  .xy-comp__wide {
    grid-column: 2;
  }
  .xy-comp__note {
    grid-column: 1 / span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}

