:root {
  --bg: #0b0b0c;
  --bg-2: #0f1012;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-2: rgba(255, 255, 255, 0.05);
  --rail: rgba(255, 255, 255, 0.08);
  --rail-2: rgba(255, 255, 255, 0.12);

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.54);

  --accent: #e8e3d8;
  --accent-ink: rgba(11, 11, 12, 0.95);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 26px;

  --shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 16px 52px rgba(0, 0, 0, 0.38);

  --container: 1152px;
  --topbar-h: 56px;

  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
  background: radial-gradient(
        1200px 700px at 18% 8%,
        rgba(232, 227, 216, 0.075),
        transparent 55%
      ),
    radial-gradient(
        900px 600px at 86% 22%,
        rgba(255, 255, 255, 0.05),
        transparent 52%
      ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
input {
  font: inherit;
  color: inherit;
}

::selection {
  background: rgba(232, 227, 216, 0.16);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.rail {
  border-left: 1px solid var(--rail);
  border-right: 1px solid var(--rail);
}

.mono {
  font-family: var(--mono);
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.78);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 227, 216, 0.12);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--topbar-h);
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 12, 0.74);
  border-bottom: 1px solid var(--rail);
}

.topbar__inner {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rail);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.35);
}

.brand__wordmark {
  height: 22px;
  width: auto;
  opacity: 0.92;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.nav__link,
.nav__pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__link:hover,
.nav__pill:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav__link:focus-visible,
.nav__pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 227, 216, 0.12);
}

.nav__details {
  position: relative;
}

.nav__details summary {
  list-style: none;
}
.nav__details summary::-webkit-details-marker {
  display: none;
}

.nav__chev {
  width: 14px;
  height: 14px;
  opacity: 0.55;
}

.nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  padding: 8px;
  border-radius: var(--radius-lg);
  background: rgba(12, 12, 14, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.nav__item {
  display: block;
  padding: 10px 10px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  transition: background 160ms cubic-bezier(0.16, 1, 0.3, 1),
    color 160ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform 160ms cubic-bezier(0.16, 1, 0.3, 1),
    background 200ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.14);
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 227, 216, 0.12);
}

.btn--primary {
  background: rgba(232, 227, 216, 0.92);
  border-color: rgba(232, 227, 216, 0.18);
  color: var(--accent-ink);
}
.btn--primary:hover {
  background: rgba(232, 227, 216, 1);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge--accent {
  color: rgba(232, 227, 216, 0.86);
  background: rgba(232, 227, 216, 0.07);
  border-color: rgba(232, 227, 216, 0.18);
}

.note {
  margin: 18px 0 0;
  padding-left: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.64);
  border-left: 2px solid rgba(255, 255, 255, 0.16);
}

.note--accent {
  border-left-color: rgba(232, 227, 216, 0.36);
}

.hero {
  padding: 44px 0 0;
}

.hero__rail {
  border-bottom: 1px solid var(--rail);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    transparent 40%
  );
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero__copy,
.hero__media {
  padding: 62px 34px;
  border-bottom: 1px solid var(--rail);
}

.hero__media {
  border-left: 1px solid var(--rail);
}

.hero__title {
  margin: 18px 0 14px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
  font-size: clamp(44px, 5.2vw, 74px);
}

.hero__period {
  color: rgba(232, 227, 216, 0.95);
}

.hero__lead {
  margin: 0 0 22px;
  font-size: 18px;
  max-width: 62ch;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

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

.meta {
  padding: 18px 18px 16px;
  border-right: 1px solid var(--rail);
}
.meta:last-child {
  border-right: 0;
}

.meta__k {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 227, 216, 0.82);
  margin-bottom: 6px;
}

.meta__v {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.section-nav {
  position: sticky;
  top: var(--topbar-h);
  z-index: 70;
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 12, 0.72);
  border-bottom: 1px solid var(--rail);
}

.section-nav__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.section-nav__inner::-webkit-scrollbar {
  display: none;
}

.section-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  transition: background 160ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 160ms cubic-bezier(0.16, 1, 0.3, 1),
    color 160ms cubic-bezier(0.16, 1, 0.3, 1);
}
.section-nav__link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}
.section-nav__link.is-active {
  background: rgba(232, 227, 216, 0.09);
  border-color: rgba(232, 227, 216, 0.18);
  color: rgba(232, 227, 216, 0.92);
}
.section-nav__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 227, 216, 0.12);
}

.module {
  background: transparent;
}

.module,
.cta,
.hero {
  scroll-margin-top: calc(var(--topbar-h) + 64px);
}

.docs {
  padding: 36px 0 72px;
}

.docs__rail {
  border-top: 1px solid var(--rail);
  border-bottom: 1px solid var(--rail);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    transparent 38%
  );
}

.docs__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.docs__aside {
  padding: 26px 18px 26px 20px;
  border-right: 1px solid var(--rail);
}

.docs__aside-inner {
  position: sticky;
  top: calc(var(--topbar-h) + 18px);
}

.docs__aside-lead {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.docs-nav {
  margin-top: 16px;
  display: grid;
  gap: 4px;
}

.docs-nav__link {
  display: block;
  padding: 9px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.72);
  transition: background 160ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 160ms cubic-bezier(0.16, 1, 0.3, 1),
    color 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

.docs-nav__link:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.docs-nav__link.is-active {
  background: rgba(232, 227, 216, 0.09);
  border-color: rgba(232, 227, 216, 0.18);
  color: rgba(232, 227, 216, 0.92);
}

.docs-nav__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 227, 216, 0.12);
}

.docs__aside-footer {
  margin-top: 18px;
}

.docs__content {
  padding: 52px 34px;
}

.docs__header {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.docs__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
  font-size: clamp(42px, 4.2vw, 56px);
}

.docs__lede {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 75ch;
}

.docs__meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.docs-section {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.docs-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.docs-section h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 28px;
  line-height: 1.12;
}

.docs-section p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 78ch;
}

.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.doc-grid--swap {
  grid-template-columns: 1.15fr 0.85fr;
}

.doc-figure {
  margin: 0;
}

.callout {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.callout__title {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: rgba(232, 227, 216, 0.78);
  margin-bottom: 10px;
}

.steps {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 10px;
}

.steps--wide {
  max-width: 78ch;
}

.concepts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.concept {
  padding: 14px 14px 13px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
}

.concept__k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 227, 216, 0.8);
  margin-bottom: 6px;
}

.concept__v {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.shortcut {
  padding: 14px 14px 13px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
}

.shortcut__keys {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 10px;
}

kbd {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 11, 12, 0.35);
  color: rgba(255, 255, 255, 0.78);
}

.shortcut__body {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.docs__cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.module--alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    transparent 38%
  );
}

.module__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.module__copy,
.module__media {
  padding: 58px 34px;
  border-bottom: 1px solid var(--rail);
}

.module__media {
  border-left: 1px solid var(--rail);
}

.module__title {
  margin: 16px 0 12px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(28px, 3vw, 40px);
}

.module__lead {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 70ch;
}

.module__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 99px;
  background: rgba(232, 227, 216, 0.86);
  box-shadow: 0 0 0 6px rgba(232, 227, 216, 0.07);
  flex: 0 0 auto;
}

.surface {
  position: relative;
  height: 100%;
  border-radius: var(--radius-xl);
  background: radial-gradient(
      1000px 380px at 18% 20%,
      rgba(232, 227, 216, 0.08),
      transparent 60%
    ),
    radial-gradient(
      800px 360px at 90% 30%,
      rgba(255, 255, 255, 0.05),
      transparent 62%
    ),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.preview {
  width: 100%;
  max-width: 680px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}

.preview--mini {
  max-width: none;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.preview--float {
  position: absolute;
  width: min(360px, 64%);
  left: 20px;
  bottom: 18px;
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  transform: rotate(-1.4deg);
}

.preview__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 11, 12, 0.35);
  backdrop-filter: blur(10px);
}

.chrome__dots {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex: 0 0 auto;
}

.chrome__dots span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.chrome__title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chrome__pill {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 227, 216, 0.82);
  border: 1px solid rgba(232, 227, 216, 0.18);
  background: rgba(232, 227, 216, 0.07);
  padding: 5px 8px;
  border-radius: 999px;
}

.preview__body {
  background: rgba(0, 0, 0, 0.15);
}

.media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta {
  padding: 80px 0 96px;
}

.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rail);
  border-bottom: 1px solid var(--rail);
  background: radial-gradient(
      900px 340px at 20% 0%,
      rgba(232, 227, 216, 0.12),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.02);
}

.cta__copy,
.cta__form {
  padding: 56px 34px;
}

.cta__form {
  border-left: 1px solid var(--rail);
  display: grid;
  gap: 12px;
}

.cta__title {
  margin: 14px 0 10px;
  font-family: var(--serif);
  letter-spacing: -0.03em;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.1;
}

.cta__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 62ch;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.field__input {
  padding: 12px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 11, 12, 0.35);
  color: rgba(255, 255, 255, 0.92);
}
.field__input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.field__input:focus {
  outline: none;
  border-color: rgba(232, 227, 216, 0.28);
  box-shadow: 0 0 0 4px rgba(232, 227, 216, 0.1);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.fineprint {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
}

.footer__rail {
  padding: 56px 0 36px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 34px;
  padding: 0 34px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__wordmark {
  height: 22px;
  width: auto;
  opacity: 0.92;
}

.footer__tagline {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer__col {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer__head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 4px;
}

.footer__col a,
.footer__btn {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  transition: color 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__col a:hover,
.footer__btn:hover {
  color: rgba(255, 255, 255, 0.78);
}

.footer__btn {
  padding: 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.footer__bottom {
  padding: 18px 34px 0;
}

.footer__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero__grid,
  .module__grid,
  .cta__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }
  .hero__media,
  .module__media,
  .cta__form {
    border-left: 0;
  }
  .preview--float {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 12px;
  }
  .surface {
    padding: 18px;
  }
  .footer__top {
    padding: 0 20px 26px;
  }
  .footer__bottom {
    padding: 18px 20px 0;
  }
  .hero__copy,
  .hero__media,
  .module__copy,
  .module__media,
  .cta__copy,
  .cta__form {
    padding: 46px 20px;
  }
  .meta {
    border-right: 0;
    border-bottom: 1px solid var(--rail);
  }
  .meta:last-child {
    border-bottom: 0;
  }
  .hero__meta {
    grid-template-columns: 1fr;
  }
  .stack {
    grid-template-columns: 1fr;
  }

  .docs__grid {
    grid-template-columns: 1fr;
  }

  .docs__aside {
    border-right: 0;
    border-bottom: 1px solid var(--rail);
  }

  .docs__aside-inner {
    position: static;
  }

  .docs__content {
    padding: 46px 20px;
  }

  .doc-grid,
  .doc-grid--swap,
  .concepts,
  .shortcuts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }
  .brand {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .nav__link,
  .nav__pill,
  .section-nav__link {
    transition: none;
  }
}
