/* 01 · faces */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/dmsans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/dmsans-latin-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Maze Metric';
  src: local('Arial'), local('Helvetica Neue'), local('Liberation Sans');
  size-adjust: 108.3%;
  ascent-override: 91.6%;
  descent-override: 28.6%;
  line-gap-override: 0%;
}

/* 02 · tokens */
:root {
  --mz-paper: #ffffff;
  --mz-ink: #16161a;
  --mz-mute: #55555e;
  --mz-hl: #7a4edb;
  --mz-hl-soft: #a98cf0;
  --mz-surface: #f5f4f8;
  --mz-deep: #121216;
  --mz-deep-text: #ededf0;
  --mz-deep-mute: #a7a7b2;
  --mz-stack: 'DM Sans', 'Maze Metric', system-ui, sans-serif;
  --mz-shell-w: 1200px;
  --mz-pad: clamp(20px, 5vw, 44px);
  --mz-lift: 0 26px 60px rgba(22, 22, 26, .13), 0 2px 8px rgba(22, 22, 26, .07);
}

/* 03 · base */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--mz-paper);
  color: var(--mz-ink);
  font-family: var(--mz-stack);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -.002em;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, p, ul, ol, dl, dd, figure, table { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
h1, h2 {
  font-style: italic;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.022em;
}
h1 { font-size: clamp(38px, 7.6vw, 74px); }
h2 { font-size: clamp(29px, 4.4vw, 45px); }
h3 { font-weight: 700; font-size: 22px; line-height: 1.24; letter-spacing: -.012em; }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid var(--mz-hl); outline-offset: 3px; border-radius: 4px; }
.mz-away {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.mz-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* 04 · shell and bands */
.mz-shell {
  width: 100%;
  max-width: var(--mz-shell-w);
  margin-inline: auto;
  padding-inline: var(--mz-pad);
}
.mz-band { padding-block: 78px; }
.mz-band--tint { background: var(--mz-surface); padding-block: 84px 92px; }
.mz-band--airy { padding-block: 46px 104px; }
.mz-band__intro { max-width: 34em; margin-top: 18px; color: var(--mz-mute); font-size: 18px; }
.mz-band__kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--mz-hl);
  margin-bottom: 14px;
}

/* 05 · cap */
.mz-cap {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(9px);
}
.mz-cap__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.mz-cap__brand {
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-decoration: none;
}
.mz-cap__tail { color: var(--mz-hl); }
.mz-cap__menu ul {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1.6vw, 22px);
}
.mz-cap__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--mz-mute);
  border-radius: 30% / 12px;
  transition: color .16s ease, background-color .16s ease;
}
.mz-cap__link:hover { color: var(--mz-ink); background: var(--mz-surface); }
.mz-cap__burger {
  display: none;
  width: 50px; height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 2px solid var(--mz-ink);
  border-radius: 30% / 12px;
  cursor: pointer;
}
.mz-cap__burger:hover { background: var(--mz-surface); }

/* 06 · foot */
.mz-foot {
  background: var(--mz-deep);
  color: var(--mz-deep-text);
  padding-block: 72px 34px;
  margin-top: 16px;
}
.mz-foot :focus-visible { outline-color: #ffffff; }
.mz-foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px 40px;
}
.mz-foot__brand {
  display: inline-flex;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 0;
}
.mz-foot__brand .mz-cap__tail { color: var(--mz-hl-soft); }
.mz-foot h2 { font-size: 26px; margin-bottom: 12px; }
.mz-foot h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--mz-deep-mute);
  margin-bottom: 8px;
}
.mz-foot p { color: var(--mz-deep-mute); max-width: 30em; }
.mz-foot__mail {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--mz-hl-soft);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.mz-foot__mail:hover { color: #ffffff; }
.mz-foot__list a {
  display: inline-block;
  padding: 12px 0;
  min-height: 24px;
  color: var(--mz-deep-text);
  text-decoration: none;
}
.mz-foot__list a:hover { text-decoration: underline; text-underline-offset: 4px; }
.mz-foot__base {
  margin-top: 54px;
  color: var(--mz-deep-mute);
  font-size: 15px;
}

/* 07 · hop */
.mz-hop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 28px;
  font: inherit;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 30% / 12px;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
}
.mz-hop--lead {
  background: var(--mz-hl);
  color: #ffffff;
  box-shadow: 5px 5px 0 0 var(--mz-ink);
}
.mz-hop--lead:hover { transform: translate(3px, 3px); box-shadow: 4px 4px 0 0 var(--mz-ink); }
.mz-hop--lead:active { transform: translate(5px, 5px); box-shadow: 0 0 0 0 var(--mz-ink); }
.mz-hop--edge {
  background: transparent;
  color: var(--mz-ink);
  border-color: var(--mz-ink);
}
.mz-hop--edge:hover { background: var(--mz-ink); color: #ffffff; transform: translate(2px, 2px); }
.mz-hop--edge:active { transform: translate(4px, 4px); }
.mz-hop--slim { min-height: 50px; padding: 12px 22px; font-size: 16px; }
.mz-hop--pale {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, .55);
}
.mz-hop--pale:hover { background: #ffffff; color: var(--mz-deep); transform: translate(2px, 2px); }

/* 08 · lead */
.mz-lead { padding-block: 58px 8px; text-align: center; }
.mz-lead__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mz-mute);
}
.mz-lead__head { margin-top: 22px; }
.mz-lead__head em { font-style: inherit; color: var(--mz-hl); }
.mz-lead__text {
  max-width: 33em;
  margin: 26px auto 0;
  font-size: 19px;
  color: var(--mz-mute);
}
.mz-lead__acts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}
.mz-lead__fan {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-top: 66px;
  padding-bottom: 26px;
}
.mz-lead__tile {
  width: 104px;
  padding: 12px;
  background: var(--mz-paper);
  border-radius: 26px;
  box-shadow: var(--mz-lift);
}
.mz-lead__tile img { border-radius: 15px; width: 80px; }
.mz-lead__tile:nth-child(1) { transform: rotate(-7deg); }
.mz-lead__tile:nth-child(2) { transform: translateY(-16px) rotate(1.5deg); margin-inline: -14px; z-index: 2; }
.mz-lead__tile:nth-child(3) { transform: rotate(6.5deg); }
.mz-lead__hint {
  margin-top: 8px;
  font-size: 14px;
  color: var(--mz-mute);
}

/* 09 · slab */
.mz-slabs { display: grid; gap: 34px; margin-top: 46px; }
.mz-slab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 366px);
  gap: 40px;
  align-items: center;
  padding: 34px;
  background: var(--mz-surface);
  border-radius: 44px;
}
.mz-slab--pick {
  background: var(--mz-paper);
  border: 2px solid var(--mz-hl);
}
.mz-slab__body { min-width: 0; }
.mz-slab__crest {
  width: 62px;
  border-radius: 15px;
  margin-bottom: 16px;
}
.mz-slab__name { margin-bottom: 4px; }
.mz-slab__maker { color: var(--mz-mute); font-size: 15px; }
.mz-slab__score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 16px;
}
.mz-stars { position: relative; display: inline-block; line-height: 0; }
.mz-stars__row { display: flex; gap: 2px; color: #c9c6d2; }
.mz-stars__row--on {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--mz-hl);
  width: var(--mz-fill, 100%);
}
.mz-stars__row--on svg { flex: none; }
.mz-slab__copy { margin-top: 16px; color: var(--mz-mute); max-width: 40em; }
.mz-slab__bits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.mz-bit {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--mz-mute);
  background: var(--mz-paper);
  border-radius: 999px;
}
.mz-slab--pick .mz-bit { background: var(--mz-surface); }
.mz-bit--hl { color: #ffffff; background: var(--mz-hl); }
.mz-slab--pick .mz-bit--hl { background: var(--mz-hl); }
.mz-slab__go { margin-top: 26px; }
.mz-slab__shots { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mz-slab__shot {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--mz-lift);
}
.mz-slab__shot--drop { transform: translateY(24px); }
.mz-slab:nth-of-type(2) .mz-slab__shot--drop { transform: translateY(-22px); }

/* 10 · timing table */
.mz-scroll {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: 26px;
}
.mz-scroll:focus-visible { outline-offset: 0; }
.mz-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
  background: var(--mz-paper);
}
.mz-table caption {
  caption-side: top;
  padding: 22px 26px 18px;
  font-size: 15px;
  color: var(--mz-mute);
  text-align: left;
}
.mz-table th, .mz-table td {
  padding: 17px 26px;
  vertical-align: top;
  font-size: 16px;
}
.mz-table thead th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mz-ink);
  border-bottom: 2px solid var(--mz-ink);
  white-space: nowrap;
}
.mz-table tbody th { font-weight: 700; width: 25%; }
.mz-table tbody td { color: var(--mz-mute); }
.mz-table tbody tr:nth-child(even) { background: var(--mz-surface); }
.mz-table__yes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mz-ink);
  font-weight: 700;
}
.mz-table__yes svg { color: var(--mz-hl); flex: none; }
.mz-signoff {
  max-width: 46em;
  margin-top: 26px;
  font-size: 16px;
  color: var(--mz-mute);
}

/* 11 · faqline */
.mz-faqlines { margin-top: 40px; }
.mz-faqline {
  width: 100%;
  padding: 8px 0;
  border-radius: 26px;
}
.mz-faqline + .mz-faqline { margin-top: 6px; }
.mz-faqline__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 4px;
  min-height: 48px;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}
.mz-faqline__q::-webkit-details-marker { display: none; }
.mz-faqline__q:hover { color: var(--mz-hl); }
.mz-faqline__sign {
  position: relative;
  flex: none;
  width: 26px; height: 26px;
  margin-top: 4px;
  color: var(--mz-hl);
}
.mz-faqline__sign::before,
.mz-faqline__sign::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform .2s ease;
}
.mz-faqline__sign::after { transform: translateY(-50%) rotate(90deg); }
.mz-faqline[open] .mz-faqline__sign::after { transform: translateY(-50%) rotate(0deg); }
.mz-faqline__a {
  padding: 0 4px 22px;
  max-width: 52em;
  color: var(--mz-mute);
}
.mz-faqline__a p + p { margin-top: 14px; }

/* 12 · note and up */
.mz-note {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1140px;
  margin-inline: auto;
  padding: 20px 24px;
  background: var(--mz-deep);
  color: var(--mz-deep-text);
  border-radius: 26px;
  box-shadow: var(--mz-lift);
}
.mz-note[hidden] { display: none; }
.mz-note :focus-visible { outline-color: #ffffff; }
.mz-note__text { flex: 1 1 380px; font-size: 15px; color: var(--mz-deep-mute); margin: 0; }
.mz-note__text a { color: #ffffff; }
.mz-note__acts { display: flex; flex-wrap: wrap; gap: 12px; }
.mz-up {
  position: fixed;
  right: 20px;
  bottom: 108px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  color: #ffffff;
  background: var(--mz-ink);
  border-radius: 30% / 12px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background-color .16s ease;
}
.mz-up.is-live { opacity: 1; visibility: visible; transform: none; }
.mz-up:hover { background: var(--mz-hl); }

/* 13 · prose pages */
.mz-prose { padding-block: 54px 92px; }
.mz-prose__stamp { margin-top: 18px; color: var(--mz-mute); font-size: 15px; }
.mz-prose__back { margin-top: 30px; }
.mz-prose__body { max-width: 44em; margin-top: 46px; }
.mz-prose__body h2 { font-size: clamp(25px, 3vw, 32px); margin-top: 46px; }
.mz-prose__body h2:first-child { margin-top: 0; }
.mz-prose__body p { margin-top: 16px; color: var(--mz-mute); }
.mz-prose__body ul { margin-top: 16px; }
.mz-prose__body li {
  position: relative;
  padding-left: 26px;
  margin-top: 10px;
  color: var(--mz-mute);
}
.mz-prose__body li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 11px;
  width: 9px; height: 9px;
  background: var(--mz-hl);
  border-radius: 30% / 40%;
}
.mz-prose__body a { color: var(--mz-hl); text-underline-offset: 4px; }
.mz-gone { padding-block: 92px 120px; text-align: center; }
.mz-gone p { max-width: 30em; margin: 22px auto 0; color: var(--mz-mute); font-size: 18px; }
.mz-gone__acts { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 34px; }

/* 14 · narrow */
@media (max-width: 940px) {
  .mz-slab { grid-template-columns: minmax(0, 1fr); gap: 30px; padding: 28px; }
  .mz-slab__shots { max-width: 420px; }
  .mz-slab__shot--drop,
  .mz-slab:nth-of-type(2) .mz-slab__shot--drop { transform: none; }
  .mz-foot__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .mz-foot__contact { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .mz-cap__burger { display: inline-flex; }
  .mz-cap__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 8px var(--mz-pad) 22px;
    background: var(--mz-paper);
    box-shadow: var(--mz-lift);
  }
  .mz-cap__menu.is-open { display: block; }
  .mz-cap__menu ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .mz-cap__link { justify-content: flex-start; padding: 12px 14px; font-size: 17px; }
  .mz-band { padding-block: 58px; }
  .mz-band--tint { padding-block: 62px 68px; }
  .mz-band--airy { padding-block: 34px 74px; }
  .mz-lead { padding-block: 42px 4px; }
  .mz-lead__fan { margin-top: 50px; }
  .mz-lead__tile { width: 92px; }
  .mz-lead__tile img { width: 68px; }
  .mz-lead__acts .mz-hop { flex: 1 1 240px; }
  .mz-foot__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .mz-foot { padding-block: 56px 30px; }
  .mz-note { padding: 18px; gap: 14px; }
  .mz-note__acts { width: 100%; }
  .mz-note__acts .mz-hop { flex: 1 1 auto; }
  .mz-up { bottom: 168px; right: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}
