/* SSDownload site stylesheet.
   Hand-written, no build step, no external requests, no gradients. */

/* ==========================================================================
   Tokens
   ========================================================================== */

:root {
  --page: #FBFBFD;
  --surface: #FFFFFF;
  --band: #F5F5F7;
  --ink: #0B0B0C;
  --ink-2: #6E6E73;
  --hairline: rgba(11, 11, 12, .09);
  --accent: #2369E8;
  --accent-hover: #1B57C9;
  --turquoise: #16A5B9;

  --r-btn: 10px;
  --r-frame: 14px;
  --r-code: 6px;

  --header-h: 60px;
  --shell: 1120px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-slide: cubic-bezier(.22, 1, .36, 1);
  --frame-shadow: 0 24px 48px -24px rgba(11, 11, 12, .18);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI",
    system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.55;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, p, figure, ul, ol, dl, dd, table, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
a { color: inherit; text-decoration: none; }
code, kbd { font-family: var(--mono); }
[hidden] { display: none !important; }
::selection { background: rgba(35, 105, 232, .16); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Reading progress: a 2px hairline that only moves with the scroll position. */
.read-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* Language switch: one language tree is rendered at a time. */
html[lang="en"] [data-lang="tr"] { display: none; }
html[lang="tr"] [data-lang="en"] { display: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-btn);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 160ms var(--ease);
}
.skip:focus-visible { transform: none; }

/* ==========================================================================
   Type
   ========================================================================== */

h1, .t-hero {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.02;
}

h2, .t-section {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.12;
}

h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -.008em; line-height: 1.35; }

.kicker {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.lede { font-size: 17px; color: var(--ink-2); }
.muted { color: var(--ink-2); }
.nums { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   Layout
   ========================================================================== */

.shell {
  width: 100%;
  max-width: calc(var(--shell) + 48px);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 96px 0; }
.section--band { background: var(--band); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

.section__head { max-width: 720px; margin-bottom: 48px; }
.section__head p { margin-top: 16px; font-size: 17px; color: var(--ink-2); }

.rule { border: 0; border-top: 1px solid var(--hairline); }

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 32px; }
}

/* ==========================================================================
   Controls
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--r-btn);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.006em;
  white-space: nowrap;
  transition: background-color 160ms ease, transform 160ms ease;
}
.btn:hover { background: var(--accent-hover); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }
.btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }


.link {
  color: var(--accent);
  font-weight: 500;
  transition: color 160ms ease;
}
.link:hover { color: var(--accent-hover); text-decoration: underline; text-underline-offset: 3px; }

.link--quiet { color: var(--ink); }
.link--quiet:hover { color: var(--ink-2); }

.link--arrow { display: inline-flex; align-items: baseline; gap: 6px; }
.link--arrow .arrow { transition: transform 160ms var(--ease); }
.link--arrow:hover .arrow { transform: translateX(3px); }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-btn);
  color: var(--ink);
  background: var(--surface);
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.icon-btn:hover { background: var(--band); }
.icon-btn svg { width: 18px; height: 18px; }

code {
  padding: .1em .38em;
  border: 1px solid var(--hairline);
  border-radius: var(--r-code);
  background: var(--band);
  font-size: .88em;
  overflow-wrap: break-word;
}

kbd {
  display: inline-block;
  padding: 3px 7px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-code);
  background: var(--surface);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--hairline);
  opacity: 0;
  transition: opacity 180ms ease;
}
html[data-scrolled="true"] .site-header::after { opacity: 1; }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 9px; margin-right: auto; }
.brand img { width: 24px; height: 24px; border-radius: 6px; }
.brand__name { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }

.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  font-size: 14.5px;
  color: var(--ink-2);
  transition: color 160ms ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.lang {
  display: inline-flex;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.lang button {
  padding: 5px 9px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 160ms ease, background-color 160ms ease;
}
.lang button + button { border-left: 1px solid var(--hairline); }
.lang button:hover { color: var(--ink); }
html[lang="tr"] .lang [data-set-lang="tr"],
html[lang="en"] .lang [data-set-lang="en"] { color: var(--ink); background: rgba(11, 11, 12, .045); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  color: var(--ink);
  transition: background-color 160ms ease;
}
.nav-toggle:hover { background: rgba(11, 11, 12, .045); }
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    display: none;
    padding: 4px 24px 16px;
    background: var(--surface);
    border-bottom: 1px solid var(--hairline);
  }
  .nav.is-open { display: block; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links li + li { border-top: 1px solid var(--hairline); }
  .nav__links a { display: block; padding: 13px 0; font-size: 15.5px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { padding: 76px 0 96px; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.hero__copy { max-width: 560px; }

.hero__eyebrow { margin-bottom: 20px; }

/* Version and date of the latest release, carried by the changelog data. */
.release-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}
.release-chip__dot { flex: none; width: 5px; height: 5px; border-radius: 50%; background: var(--turquoise); }
.release-chip__sep { color: rgba(11, 11, 12, .28); }

.hero__title {
  font-size: clamp(2.5rem, 4.4vw, 3rem);
  letter-spacing: -.028em;
  line-height: 1.08;
}
.hero__line { display: block; text-wrap: balance; }
.hero__line--soft { color: var(--ink-2); }

.hero__lede { margin-top: 22px; font-size: 18px; color: var(--ink-2); text-wrap: pretty; }

.hero__caps {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-2);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
}

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}

.copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px 3px 9px;
  border: 1px solid var(--hairline);
  border-radius: 7px;
  background: var(--surface);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  transition: color 160ms ease, border-color 160ms ease;
}
.copy:hover { color: var(--ink); border-color: rgba(11, 11, 12, .18); }

/* Both faces share one grid cell, so the feedback never shifts the line. */
.copy__label { display: inline-grid; }
.copy__label > * { grid-area: 1 / 1; }
.copy__face { transition: opacity 140ms ease, visibility 140ms; }
.copy__done { visibility: hidden; opacity: 0; color: var(--ink); transition: opacity 140ms ease, visibility 140ms; }
.copy.is-done .copy__face { visibility: hidden; opacity: 0; }
.copy.is-done .copy__done { visibility: visible; opacity: 1; }

.copy__icon { flex: none; width: 13px; height: 13px; opacity: .7; transition: opacity 160ms ease; }
.copy:hover .copy__icon { opacity: 1; }

@media (max-width: 900px) {
  .hero { padding: 56px 0 64px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .hero__title { font-size: clamp(2.125rem, 7.2vw, 2.75rem); }
  .hero__lede { font-size: 17px; }
}

/* ==========================================================================
   Carousel
   ========================================================================== */

.carousel { width: 100%; }

.stage {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-frame);
  box-shadow: var(--frame-shadow);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.stage:active { cursor: grabbing; }

.track {
  display: flex;
  height: 100%;
  transition: transform 420ms var(--ease-slide);
}
.track.is-dragging { transition: none; }

.slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

.stage__empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  background: var(--band);
}
.stage__empty svg { width: 28px; height: 28px; color: var(--ink-2); }
.stage__empty p { font-size: 13.5px; color: var(--ink-2); max-width: 34ch; }

.carousel__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.carousel__caption {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  font-size: 13.5px;
  color: var(--ink-2);
  opacity: 1;
  transition: opacity 180ms ease;
}
.carousel__caption.is-fading { opacity: 0; }
.carousel__caption::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--turquoise);
}

.carousel__controls { display: flex; align-items: center; gap: 12px; flex: none; }

.dots { display: flex; align-items: center; gap: 2px; }
.dots button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
}

/* Inactive: a dot. Current: a hairline that fills while the slide is shown. */
.dot__mark,
.dot__bar {
  position: absolute;
  left: 50%; top: 50%;
  pointer-events: none;
}
.dot__mark {
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: rgba(11, 11, 12, .25);
  transition: background-color 160ms ease, opacity 200ms ease;
}
.dot__bar {
  width: 14px; height: 2px;
  margin: -1px 0 0 -7px;
  border-radius: 1px;
  background: rgba(11, 11, 12, .16);
  opacity: 0;
  transition: background-color 160ms ease, opacity 200ms ease;
}
.dot__fill {
  position: absolute;
  inset: 0;
  border-radius: 1px;
  background: var(--ink);
  transform-origin: 0 50%;
}
.dots button:hover .dot__mark { background: rgba(11, 11, 12, .45); }
.dots button:hover .dot__bar { background: rgba(11, 11, 12, .3); }
.dots button[aria-current="true"] .dot__mark { opacity: 0; }
.dots button[aria-current="true"] .dot__bar { opacity: 1; }

@media (max-width: 640px) {
  .carousel__foot { flex-direction: column-reverse; align-items: stretch; gap: 12px; }
  .carousel__controls { justify-content: space-between; }
}

/* ==========================================================================
   Features
   ========================================================================== */

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: -24px;
}

.feature {
  padding: 28px 24px 32px;
  border-top: 1px solid var(--hairline);
}
.feature svg { width: 22px; height: 22px; color: var(--ink); margin-bottom: 16px; }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: 15px; color: var(--ink-2); }

@media (hover: hover) {
  .feature { position: relative; }
  /* The card's own rule darkens, so the hover stays a hairline, not a box. */
  .feature::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: -1px;
    height: 1px;
    background: rgba(11, 11, 12, .2);
    opacity: 0;
    transition: opacity 160ms ease;
  }
  .feature svg { transition: color 160ms ease, transform 160ms var(--ease); }
  .feature:hover::after { opacity: 1; }
  .feature:hover svg { color: var(--accent); transform: translateY(-1px); }
}

@media (max-width: 1023px) {
  .features__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 639px) {
  .features__grid { grid-template-columns: minmax(0, 1fr); margin-inline: 0; }
  .feature { padding-inline: 0; }
}

/* ==========================================================================
   Steps
   ========================================================================== */

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

.step { position: relative; padding: 0 32px; }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

/* Separators are hairlines that draw themselves as the steps arrive. */
.step:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--hairline);
}
.js .step:not(:first-child)::before {
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 700ms var(--ease);
}
.js .step:nth-child(2)::before { transition-delay: 60ms; }
.js .step:nth-child(3)::before { transition-delay: 120ms; }
.js .step.is-in:not(:first-child)::before { transform: none; }

.step__rule { display: block; width: 20px; height: 2px; background: var(--turquoise); margin-bottom: 20px; }
.step__n {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-2); }

.steps__more { margin-top: 40px; }

@media (max-width: 860px) {
  .steps { grid-template-columns: minmax(0, 1fr); }
  .step { padding: 24px 0 0; border-top: 1px solid var(--hairline); }
  .step:first-child { padding-top: 0; border-top: 0; }
  .step:not(:first-child)::before { content: none; }
  .step__rule { margin-bottom: 16px; }
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta { background: var(--surface); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 32px;
  padding: 64px 0;
}
.cta__text h2 { margin-bottom: 8px; }
.cta__text p { font-size: 15px; color: var(--ink-2); }
.cta__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta__version { font-size: 14px; color: var(--ink-2); font-variant-numeric: tabular-nums; }

@media (max-width: 760px) {
  .cta__inner { padding: 48px 0; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { padding: 64px 0 40px; }

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.footer__brand { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.footer__brand img { width: 24px; height: 24px; border-radius: 6px; }
.footer__brand span { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.footer__tagline { font-size: 15px; color: var(--ink-2); max-width: 34ch; }

.footer__title { margin-bottom: 16px; }
.footer__col li + li { margin-top: 10px; }
.footer__col a, .footer__col span { font-size: 14.5px; }
.footer__col a { color: var(--ink-2); transition: color 160ms ease; }
.footer__col a:hover { color: var(--ink); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 13.5px;
  color: var(--ink-2);
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .footer__bottom { margin-top: 40px; }
}

/* ==========================================================================
   Documents (usage, privacy, contact, changelog)
   ========================================================================== */

.page-head { padding: 64px 0 48px; }
.page-head h1 { font-size: clamp(2.25rem, 4.4vw, 3.25rem); letter-spacing: -.03em; line-height: 1.06; }
.page-head p { margin-top: 18px; max-width: 64ch; font-size: 17px; color: var(--ink-2); }

.doc {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  gap: 64px;
  padding-bottom: 96px;
}
.doc__body { max-width: 720px; min-width: 0; }

.page-body { max-width: 780px; padding-bottom: 96px; }

.toc { position: sticky; top: calc(var(--header-h) + 28px); align-self: start; }
.toc__title { margin-bottom: 14px; }
.toc ol { display: flex; flex-direction: column; gap: 2px; }
.toc a {
  display: block;
  padding: 5px 0 5px 12px;
  border-left: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--ink-2);
  transition: color 160ms ease, border-color 160ms ease;
}
.toc a:hover { color: var(--ink); }
.toc a[aria-current="location"] { color: var(--ink); font-weight: 600; border-color: var(--ink); }

.doc__section { padding: 40px 0; border-top: 1px solid var(--hairline); scroll-margin-top: calc(var(--header-h) + 16px); }
.doc__section:first-child { border-top: 0; padding-top: 0; }
.doc__section h2 { margin-bottom: 16px; }
.doc__section h3 { margin: 28px 0 8px; }
.doc__section p + p, .doc__section p + ul, .doc__section ul + p, .doc__section p + ol,
.doc__section ol + p, .doc__section table + p, .doc__section p + table, .doc__section h3 + p {
  margin-top: 16px;
}
.doc__section p, .doc__section ul li, .doc__section ol li { color: var(--ink-2); }
.doc__section strong { color: var(--ink); font-weight: 600; }

.doc__section ul { display: flex; flex-direction: column; gap: 10px; }
.doc__section ul li { position: relative; padding-left: 18px; font-size: 16px; }
.doc__section ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--hairline);
  border: 1px solid rgba(11, 11, 12, .18);
}

.doc__section ol { display: flex; flex-direction: column; gap: 10px; counter-reset: step; }
.doc__section ol li { position: relative; padding-left: 28px; font-size: 16px; counter-increment: step; }
.doc__section ol li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: .12em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}

.note {
  padding-left: 16px;
  border-left: 1px solid var(--hairline);
  font-size: 15px;
  color: var(--ink-2);
}

@media (max-width: 900px) {
  .page-head { padding: 48px 0 32px; }
  .doc { grid-template-columns: minmax(0, 1fr); gap: 32px; padding-bottom: 64px; }
  .toc { position: static; padding-bottom: 24px; border-bottom: 1px solid var(--hairline); }
  .toc ol { gap: 0; }
  .toc a { padding: 7px 0 7px 12px; }
}

/* ==========================================================================
   Tables
   ========================================================================== */

.table { width: 100%; font-size: 15px; }
.table caption {
  margin-bottom: 12px;
  text-align: left;
  font-size: 13.5px;
  color: var(--ink-2);
}
.table th {
  padding: 0 16px 10px 0;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.table td {
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
  color: var(--ink-2);
  overflow-wrap: break-word;
}
.table th:last-child, .table td:last-child { padding-right: 0; }
.table td strong { color: var(--ink); font-weight: 600; }
.table--keys td:first-child { width: 168px; }
.table--codes td:first-child { white-space: nowrap; width: 96px; }

@media (max-width: 560px) {
  .table--keys td:first-child, .table--codes td:first-child { width: auto; white-space: normal; }
}

/* ==========================================================================
   Changelog
   ========================================================================== */

.changelog__empty { font-size: 16px; color: var(--ink-2); }

.release { padding: 36px 0; border-bottom: 1px solid var(--hairline); }
.release:first-child { padding-top: 0; }
.release:last-child { border-bottom: 0; }

.release__head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.release__version {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.release__date { font-size: 13.5px; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.release__link { margin-left: auto; font-size: 14px; }

.chip {
  padding: 2px 8px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.release__notes { margin-top: 12px; max-width: 72ch; }
.release__notes p { font-size: 16px; color: var(--ink-2); }
.release__notes p + p { margin-top: 10px; }

@media (max-width: 640px) {
  .release__link { margin-left: 0; }
}

/* ==========================================================================
   Motion
   ========================================================================== */

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* Language switch: the hero copy steps out of the way instead of flipping. */
.js [data-hero-copy] { transition: opacity 140ms ease; }
.js [data-hero-copy].is-swapping { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js [data-hero-copy] { transition: none; }
  .track { transition: none; }
  .carousel__caption { transition: none; }
  .site-header::after { transition: none; }
  .step__rule { background: var(--hairline); }
  .js .step:not(:first-child)::before { transform: none; transition: none; }
  .link--arrow .arrow { transition: none; }
  .btn:active { transform: none; }
  .copy__face, .copy__done { transition: none; }
  .read-progress { display: none; }
}
