:root {
  --bg: #0e1116;
  --panel: #151922;
  --panel-2: #1b2230;
  --panel-alt: #1b2230;
  --text: #e8ecf3;
  --muted: #c0c9de;
  --muted-strong: #c9d2e4;
  --accent: #53b0ff;
  --accent-2: #8ee1ff;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 30px rgba(6, 11, 18, 0.45);
  --maxw: min(1200px, 96vw);
  --font-base: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --noise-overlay: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.05' numOctaves='4' seed='7' stitchTiles='stitch'/%3E%3CfeGaussianBlur stdDeviation='0.35'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='gamma' amplitude='1' exponent='1.6' offset='0'/%3E%3CfeFuncG type='gamma' amplitude='1' exponent='1.6' offset='0'/%3E%3CfeFuncB type='gamma' amplitude='1' exponent='1.6' offset='0'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='64' height='64' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  --neon: #dd1fdd;
  --outline: #53b0ff;
  --outline-soft: rgba(83, 176, 255, 0.32);
  --page-top-padding: 84px;
  --header-h-d: 184px;
  --header-h-t: 140px;
  --header-h-m: 120px;
  --header-pad: clamp(24px, 5vw, 72px);
  --bg-url: url("/images/MidnightDriveStudios_Logo_Alpha_Lo-res.avif");
  --stack-gap: clamp(32px, 5vw, 48px);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  scrollbar-gutter: stable both-edges;
  overflow-y: visible;
  overflow-x: clip;
  scroll-behavior: smooth;
}

html:has(body.umm16-doc),
body.umm16-doc {
  scroll-behavior: auto;
}

body,
body * {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

a {
  color: inherit;
}

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

.page-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--page-top-padding, 84px) clamp(16px, 7vw, 28px) 0;
}

/* Hide mobile-only menu labels on desktop */
.site-nav__title,
.site-nav__subtitle {
  display: none;
}

.page-wrap--narrow {
  max-width: min(1040px, 96vw);
}

.page-wrap > *:not(:first-child) {
  margin-top: var(--stack-gap);
}

@media (min-width: 1025px) {
  :root {
    --page-top-padding: 0px;
  }

  .page-wrap {
    margin: clamp(56px, 8vw, 88px) auto 0;
    padding: 0 clamp(24px, 5vw, 72px);
  }

  .site-header__outer {
    position: sticky;
    top: clamp(8px, 1.4vw, 16px);
    z-index: 220;
  }
}

.site-header__outer {
  width: 100%;
  max-width: var(--maxw);
  margin: clamp(32px, 6vw, 72px) auto clamp(12px, 3vw, 32px);
  padding: 0 var(--header-pad);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-header {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  min-width: min(520px, calc(100% - var(--header-pad) * 2));
  max-width: calc(100% - var(--header-pad));
  min-height: var(--header-h-d);
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px) clamp(26px, 4vw, 32px) clamp(48px, 6vw, 64px);
  box-shadow:
    0 0 0 1px rgba(83, 176, 255, 0.85),
    0 0 18px rgba(83, 176, 255, 0.35);
  background: #0b1020;
  isolation: isolate;
  transition: padding-bottom 0.25s ease;
}

.site-header[data-menu='open'] {
  padding-bottom: clamp(110px, 26vw, 160px);
}

.site-header__bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg-url);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center calc(96% - 5px);
  z-index: 1;
}

.menu-toggle {
  position: absolute;
  bottom: clamp(6px, 2.5vw, 18px);
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 28px;
  border: 1px solid rgba(83, 176, 255, 0.45);
  background: rgba(8, 11, 20, 0.7);
  color: var(--neon);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 30;
  margin-inline: auto;
  width: max-content;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-toggle__label {
  font-size: 0.75rem;
}

.menu-toggle__icon {
  width: 20px;
  height: 12px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle__icon-line {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header[data-menu='open'] .menu-toggle__icon-line:first-child {
  transform: translateY(5px) rotate(45deg);
}

.site-header[data-menu='open'] .menu-toggle__icon-line:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

/* Hide middle line on open when using 3-line burger */
.site-header[data-menu='open'] .menu-toggle__icon-line:nth-child(2) {
  opacity: 0;
}

.site-nav {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  max-width: min(520px, 90vw);
  padding: 0 clamp(18px, 3vw, 28px);
  bottom: clamp(8px, 2.5vw, 22px);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(12px, 2vw, 18px);
  margin: 0 auto;
  z-index: 20;
  justify-content: center;
}

.site-nav[data-align='left'] {
  justify-content: flex-start;
  left: clamp(24px, 5vw, 36px);
  transform: none;
  margin: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 10px 26px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: rgba(5, 11, 22, 0.8);
  border: 2px solid rgba(83, 176, 255, 0.45);
  box-shadow:
    inset 0 0 10px rgba(83, 176, 255, 0.18),
    0 0 12px rgba(83, 176, 255, 0.22);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
  outline: none;
  border-color: rgba(83, 176, 255, 0.8);
  box-shadow:
    inset 0 0 14px rgba(83, 176, 255, 0.25),
    0 0 16px rgba(83, 176, 255, 0.35);
}

.nav-link[aria-current='page'] {
  color: #fff;
  background: rgba(5, 11, 22, 0.9);
  border-color: rgba(83, 176, 255, 0.95);
  box-shadow:
    inset 0 0 16px rgba(83, 176, 255, 0.35),
    0 0 20px rgba(83, 176, 255, 0.5);
}

.site-header__outer {
  margin: clamp(8px, 4vw, 18px) auto 0;
}

@media (max-width: 1024px) {
  .site-header__outer {
    margin: 0 auto 4px;
    padding: 0 clamp(12px, 6vw, 28px);
    justify-content: center;
    align-items: center;
    min-height: 0;
    max-width: none;
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    transform: none;
  }

  .site-header {
    position: relative;
    z-index: 200;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0; /* remove desktop min-height on mobile */
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
    border: none;
  }

  .site-header__bg {
    display: none !important;
    background-image: none !important;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: max(clamp(12px, 3.5vw, 24px), calc(env(safe-area-inset-top, 0px) + 8px));
    left: 0;
    right: 0;
    transform: none;
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 0;
    z-index: 120;
    margin: 0 auto;
    box-shadow: none;
    background: transparent;
    border: 1px solid rgba(83, 176, 255, 0.4); /* match card outline */
    color: var(--outline); /* burger line color */
    border-radius: 10px;
  }

  .menu-toggle__label {
    display: none;
  }

  .menu-toggle__icon {
    display: inline-flex;
    width: 24px;
    height: 14px;
    flex-direction: column;
    justify-content: space-between;
  }

  .site-nav,
  .site-nav[data-align='left'] {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    margin: 0;
    padding: max(clamp(110px, 26vw, 160px), calc(env(safe-area-inset-top, 0px) + 74px)) clamp(24px, 10vw, 44px) max(clamp(28px, 14vw, 64px), calc(env(safe-area-inset-bottom, 0px) + 18px));
    min-height: 100dvh;
    background: #02030a;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 150;
    overflow-y: auto;
    visibility: hidden;
    max-height: 100dvh;
  }

  /* Visual title at top of the mobile menu */
  .site-nav__title {
    display: block;
    color: var(--muted-strong);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    margin: 0 0 10px;
  }

  .site-nav__subtitle {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-align: center;
    margin: -6px 0 12px; /* sits just under title */
  }

  .site-header[data-menu='open'] .site-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-header__outer[data-menu='open'] ~ main,
  .site-header__outer[data-menu='open'] ~ footer {
    visibility: hidden;
    pointer-events: none;
  }

  .nav-link {
    width: 100%;
    justify-content: center;
    min-width: 0;
    padding: 14px 28px;
    font-size: 0.9rem;
    background: rgba(5, 11, 22, 0.8);
    border: 2px solid rgba(83, 176, 255, 0.45); /* blue like card outline */
    box-shadow:
      inset 0 0 18px rgba(83, 176, 255, 0.18),
      0 0 24px rgba(83, 176, 255, 0.28);
  }

  .nav-link[aria-current='page'] {
    background: rgba(5, 11, 22, 0.9);
    border-color: rgba(83, 176, 255, 0.95);
    box-shadow:
      inset 0 0 16px rgba(83, 176, 255, 0.35),
      0 0 20px rgba(83, 176, 255, 0.5);
  }
}

.hero {
  background-image: var(--noise-overlay),
    radial-gradient(circle at 12% 6%, rgba(54, 122, 255, 0.25), transparent 58%),
    radial-gradient(circle at 82% 12%, rgba(36, 90, 180, 0.2), transparent 52%),
    linear-gradient(140deg, rgba(6, 11, 20, 0.96), rgba(4, 6, 12, 0.95));
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: 200px 200px, 120% 120%, 120% 120%, 100% 100%;
  border: 1px solid rgba(83, 176, 255, 0.45);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  box-shadow:
    var(--shadow),
    0 0 20px rgba(83, 176, 255, 0.3);
  text-align: center;
}

.hero--left {
  text-align: left;
}

/* Center the header pill in User Manual */
.hero--left .badge {
  display: block;
  width: max-content;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(83, 176, 255, 0.15);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: clamp(-14px, -2vw, -10px);
  box-shadow: 0 10px 24px rgba(6, 11, 18, 0.45);
}

.hero h1 {
  margin: 12px 0 4px;
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  letter-spacing: 0.02em;
  font-weight: 600;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.card {
  background-image: var(--noise-overlay),
    radial-gradient(circle at 12% 12%, rgba(75, 142, 255, 0.28), transparent 62%),
    radial-gradient(circle at 85% 10%, rgba(28, 62, 142, 0.22), transparent 55%),
    linear-gradient(155deg, rgba(9, 16, 30, 0.97), rgba(3, 6, 12, 0.92));
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: 180px 180px, 130% 130%, 130% 130%, 100% 100%;
  border: 1px solid rgba(83, 176, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow:
    var(--shadow),
    0 0 18px rgba(83, 176, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card--centered {
  text-align: center;
  align-items: center;
}

.three-rules {
  text-align: center;
}

.three-rules__intro {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.8;
}

.three-rules__rules {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(6px, 1.2vw, 10px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
  text-align: center;
  align-items: center;
}

.three-rules__rule {
  width: min(680px, 100%);
  padding: clamp(18px, 2.8vw, 24px) clamp(18px, 3vw, 26px);
  border-radius: 18px;
  background-image: var(--noise-overlay), linear-gradient(160deg, rgba(83, 176, 255, 0.12), rgba(0, 0, 0, 0));
  background-repeat: repeat, no-repeat;
  background-size: 180px 180px, cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(83, 176, 255, 0.04);
  text-align: center;
}

.three-rules__rule:first-child {
  margin-top: 4px;
}

.three-rules__rule:last-child {
  margin-bottom: 4px;
}

.three-rules__rule-title {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  letter-spacing: 0.01em;
}

.three-rules__rule-body {
  margin: 8px auto 0;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.8;
}

.three-rules__closing {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  font-weight: 500;
  line-height: 1.8;
}

.card--compact {
  gap: 16px;
}

.card--tight {
  padding: clamp(20px, 4vw, 32px);
}

.card--spacious {
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
}

/* Home hero video card: minimize padding so iframe fills */
.card--video {
  padding: clamp(8px, 2.5vw, 16px);
}
.card--video > iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
}

/* Features section specific tuning */
.card--features {
  gap: 20px;
  background-image: var(--noise-overlay),
    radial-gradient(circle at 18% 10%, rgba(75, 142, 255, 0.22), transparent 60%),
    radial-gradient(circle at 72% 20%, rgba(23, 48, 110, 0.28), transparent 58%),
    linear-gradient(150deg, rgba(6, 11, 20, 0.98), rgba(3, 5, 11, 0.95));
  box-shadow:
    var(--shadow),
    0 0 26px rgba(4, 6, 14, 0.85);
  position: relative;
  overflow: hidden;
}
.card--features::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 11, 22, 0.85) 0%,
    rgba(6, 11, 22, 0.35) 30%,
    rgba(6, 11, 22, 0.08) 45%,
    rgba(6, 11, 22, 0.08) 55%,
    rgba(6, 11, 22, 0.35) 70%,
    rgba(6, 11, 22, 0.85) 100%
  );
  pointer-events: none;
}
.card--features > * {
  position: relative;
  z-index: 1;
}
.card--features .feature-image-wrap {
  margin-bottom: 20px;
}

.card--panel {
  background-image: var(--noise-overlay),
    radial-gradient(circle at 12% 10%, rgba(54, 122, 255, 0.24), transparent 60%),
    linear-gradient(150deg, rgba(8, 14, 24, 0.95), rgba(3, 6, 12, 0.94));
  border-radius: 16px;
  box-shadow:
    var(--shadow-soft),
    0 0 18px rgba(83, 176, 255, 0.25);
}

.card__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5px, 0.8vw, 8px) clamp(14px, 2.5vw, 24px);
  border-radius: 999px;
  font-size: clamp(0.75rem, 1.4vw, 0.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 auto;
  color: var(--text);
  font-weight: 600;
  background: linear-gradient(135deg, rgba(83, 176, 255, 0.24), rgba(83, 176, 255, 0.08));
  border: 1px solid rgba(142, 225, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(14, 17, 22, 0.32), 0 12px 26px rgba(6, 11, 18, 0.45);
}

.card__lede {
  margin: 0 auto;
  color: var(--muted-strong);
  max-width: 68ch;
}

.grid {
  display: grid;
  gap: clamp(16px, 2vw, 32px);
}

.grid.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 32px);
  justify-content: center;
  align-items: stretch;
}

.grid.features-grid > * {
  flex: 1 1 clamp(260px, 42vw, 320px);
}

.feature-card .feature-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 768px) {
  .feature-card .feature-desc {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

.feature-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.72);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1200;
  overscroll-behavior: contain;
  touch-action: none;
}

.feature-modal {
  width: min(640px, 92vw);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(130% 140% at 30% 10%, rgba(75, 132, 210, 0.35), rgba(10, 16, 28, 0.92)),
    linear-gradient(160deg, rgba(16, 24, 40, 0.92), rgba(6, 10, 18, 0.98));
  border-radius: 28px;
  border: 1px solid rgba(110, 160, 220, 0.45);
  box-shadow: 0 24px 60px rgba(2, 5, 12, 0.6);
  text-align: center;
  color: rgba(240, 246, 255, 0.95);
  outline: none;
}

.feature-modal__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(150, 195, 245, 0.6);
  background: rgba(24, 42, 66, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.feature-modal__description {
  margin: 18px 0 0;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(240, 246, 255, 0.92);
}

.feature-modal__hint {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(240, 246, 255, 0.75);
}

.eula-scroll {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.video-grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.video-card {
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.video-card__thumb {
  display: block;
  text-decoration: none;
  border-radius: calc(var(--radius) - 8px);
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.video-card__thumb img {
  transition: none;
}

/* Ensure single video in the home hero card expands fully */
.card.card--tight > iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
  display: block;
}

.video-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.24;
}

.video-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.68;
}

.cta {
  display: inline-flex;
  gap: 10px;
  margin-top: 14px;
}

.cta--center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: #0a0f18;
  background: linear-gradient(180deg, #8fd3ff, #53b0ff);
  font-weight: 600;
  box-shadow:
    0 10px 22px rgba(2, 6, 14, 0.45),
    0 0 16px rgba(83, 176, 255, 0.22);
  transition: box-shadow 0.2s ease;
}

button.btn {
  border: none;
  cursor: pointer;
  font: inherit;
}

.btn:hover,
.btn:focus-visible {
  box-shadow:
    0 14px 28px rgba(2, 6, 14, 0.55),
    0 0 26px rgba(83, 176, 255, 0.4);
}

.site-footer {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(0.75rem, 1.1vw, 0.875rem);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 18px);
  width: 100%;
  max-width: min(520px, 90vw);
}

@media (max-width: 640px) {
  .site-footer p {
    font-size: 0.7rem;
  }

  .three-rules__intro,
  .three-rules__closing {
    max-width: 92%;
  }

  .three-rules__rule {
    padding: 16px 18px;
  }

  .three-rules__rule-body {
    max-width: 50ch;
  }
}

/* Hide footer buttons/nav on mobile */
@media (max-width: 1024px) {
  .site-footer__nav {
    display: none;
  }
}

.muted {
  color: var(--muted);
}

.muted-strong {
  color: var(--muted-strong);
}

.toc {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  margin: 0;
  box-shadow: var(--shadow);
}

.toc h2 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted-strong);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.toc a:hover,
.toc a:focus-visible {
  background: rgba(77, 166, 255, 0.13);
  color: var(--text);
}

body.modal-scroll-lock,
html.modal-scroll-lock {
  overflow: hidden;
}

.hero__actions {
  margin-top: clamp(18px, 3vw, 26px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.doc-search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  min-width: min(420px, 88vw);
  justify-content: space-between;
  border-radius: 999px;
  border: 1px solid rgba(83, 176, 255, 0.75);
  background-image: var(--noise-overlay),
    radial-gradient(circle at 18% 18%, rgba(83, 176, 255, 0.28), transparent 60%),
    linear-gradient(145deg, rgba(10, 18, 30, 0.98), rgba(7, 12, 22, 0.95));
  background-repeat: repeat, no-repeat;
  background-size: 180px 180px, 140% 140%, 100% 100%;
  color: #eaf4ff;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow:
    0 14px 32px rgba(3, 7, 16, 0.65),
    inset 0 0 12px rgba(83, 176, 255, 0.16),
    0 0 18px rgba(83, 176, 255, 0.4);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.doc-search-trigger:hover,
.doc-search-trigger:focus-visible {
  border-color: rgba(142, 225, 255, 0.95);
  box-shadow:
    0 16px 36px rgba(3, 7, 16, 0.7),
    0 0 28px rgba(83, 176, 255, 0.6);
}

.doc-search-trigger__hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 244, 255, 0.9);
  background: rgba(6, 12, 22, 0.8);
  border: 1px solid rgba(83, 176, 255, 0.5);
}

.doc-search-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.doc-search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-overlay.is-closing {
  opacity: 0;
  pointer-events: none;
}

.doc-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.doc-search-overlay__backdrop::before {
  content: none;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-overlay__backdrop {
  background:
    radial-gradient(70% 64% at 72% 16%, rgba(86, 136, 252, 0.16) 0%, rgba(86, 136, 252, 0) 74%),
    linear-gradient(180deg, rgba(3, 7, 13, 0.88) 0%, rgba(2, 5, 11, 0.96) 100%);
  -webkit-backdrop-filter: blur(12px) saturate(122%);
  backdrop-filter: blur(12px) saturate(122%);
}

.doc-search-overlay.is-open .doc-search-overlay__backdrop {
  opacity: 1;
}

.doc-search-panel {
  position: relative;
  z-index: 1;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-panel {
  width: min(960px, 94vw);
  max-height: calc(100dvh - 28px);
  border-radius: var(--radius-xl, 22px);
  padding: clamp(24px, 2.6vw, 30px);
  border: 1px solid rgba(116, 170, 255, 0.44);
  background-color: rgba(7, 12, 23, 0.98);
  background-image: var(
      --surface-gradient-hero,
      linear-gradient(145deg, rgba(44, 62, 100, 0.95) 0%, rgba(18, 27, 45, 0.97) 42%, rgba(6, 10, 19, 0.996) 100%)
    ),
    radial-gradient(130% 128% at 14% -34%, rgba(83, 145, 247, 0.23), rgba(83, 145, 247, 0));
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%;
  background-position: center;
  box-shadow:
    0 0 0 1px rgba(118, 172, 255, 0.22),
    0 16px 30px rgba(0, 0, 0, 0.66),
    inset 0 1px 0 rgba(184, 214, 255, 0.16);
  opacity: 0;
  transform: translateY(14px) scale(0.99);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  color-scheme: dark;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.doc-search-overlay:not(.contact-overlay).is-open .doc-search-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(130, 186, 255, 0.58);
  box-shadow:
    0 0 0 1px rgba(124, 178, 255, 0.28),
    0 18px 32px rgba(0, 0, 0, 0.68),
    inset 0 1px 0 rgba(184, 214, 255, 0.16);
}

.doc-search-overlay,
.doc-search-overlay * {
  -webkit-user-select: text;
  user-select: text;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(104, 154, 236, 0.16);
}

.doc-search-overlay:not(.contact-overlay) .doc-search-eyebrow {
  margin: 0 0 6px;
  color: rgba(178, 204, 234, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-panel__header h2 {
  margin: 0;
  font-size: clamp(1.28rem, 2.2vw, 1.76rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: rgba(247, 251, 255, 0.98);
  font-weight: 620;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-close {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(112, 165, 247, 0.3);
  background: rgba(14, 22, 38, 0.62);
  color: rgba(234, 244, 255, 0.95);
  border-radius: 10px;
  box-shadow:
    0 8px 16px rgba(5, 11, 23, 0.38),
    inset 0 1px 0 rgba(197, 222, 255, 0.12);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-close:hover,
.doc-search-overlay:not(.contact-overlay) .doc-search-close:focus-visible {
  border-color: rgba(133, 187, 255, 0.44);
  background: rgba(24, 36, 60, 0.84);
  box-shadow:
    0 10px 18px rgba(5, 11, 23, 0.44),
    0 0 0 1px rgba(120, 174, 255, 0.16),
    inset 0 1px 0 rgba(219, 236, 255, 0.16);
}

.doc-search-overlay:not(.contact-overlay) .doc-search-close:focus-visible {
  outline: 2px solid rgba(194, 221, 255, 0.92);
  outline-offset: 2px;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-input {
  margin-top: 16px;
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(108, 161, 247, 0.25);
  background: linear-gradient(160deg, rgba(20, 30, 50, 0.95), rgba(10, 16, 29, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(206, 224, 255, 0.1),
    inset 0 0 0 1px rgba(6, 9, 14, 0.38);
  color: rgba(243, 249, 255, 0.98);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-input::placeholder {
  color: rgba(182, 192, 209, 0.74);
}

.doc-search-overlay:not(.contact-overlay) .doc-search-input:focus {
  outline: none;
  border-color: rgba(118, 170, 255, 0.42);
  box-shadow:
    0 0 0 2px rgba(110, 168, 255, 0.16),
    inset 0 1px 0 rgba(228, 240, 255, 0.14);
}

.doc-search-overlay:not(.contact-overlay) .doc-search-meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(182, 192, 209, 0.86);
  font-size: 0.88rem;
  line-height: 1.5;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(112, 165, 247, 0.32);
  background: rgba(14, 22, 38, 0.68);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.69rem;
  color: rgba(210, 228, 252, 0.88);
}

.doc-search-overlay:not(.contact-overlay) .doc-search-status {
  margin-top: 14px;
  min-height: 1.3em;
  color: rgba(182, 192, 209, 0.86);
  font-size: 0.9rem;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-results {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  max-height: min(50vh, 420px);
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(142, 225, 255, 0.5) rgba(7, 12, 21, 0.8);
}

.doc-search-overlay:not(.contact-overlay) .doc-search-results::-webkit-scrollbar {
  width: 10px;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-results::-webkit-scrollbar-track {
  background: rgba(7, 12, 21, 0.8);
  border-radius: 10px;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-results::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(142, 225, 255, 0.55), rgba(83, 176, 255, 0.42));
  border-radius: 10px;
  border: 2px solid rgba(7, 12, 21, 0.8);
}

.doc-search-overlay:not(.contact-overlay) .doc-search-result {
  display: grid;
  gap: 6px;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(108, 161, 247, 0.24);
  background:
    linear-gradient(160deg, rgba(20, 30, 50, 0.92), rgba(10, 16, 29, 0.96)),
    radial-gradient(120% 220% at 14% -86%, rgba(95, 150, 246, 0.16), rgba(95, 150, 246, 0));
  box-shadow:
    inset 0 1px 0 rgba(206, 224, 255, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.22);
  color: rgba(243, 249, 255, 0.97);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-result.is-active,
.doc-search-overlay:not(.contact-overlay) .doc-search-result:focus-visible,
.doc-search-overlay:not(.contact-overlay) .doc-search-results[data-nav="mouse"] .doc-search-result:hover {
  border-color: rgba(133, 187, 255, 0.44);
  background:
    linear-gradient(160deg, rgba(28, 42, 68, 0.94), rgba(14, 23, 40, 0.98)),
    radial-gradient(120% 220% at 14% -86%, rgba(95, 150, 246, 0.2), rgba(95, 150, 246, 0));
  box-shadow:
    0 10px 18px rgba(5, 11, 23, 0.46),
    0 0 0 1px rgba(120, 174, 255, 0.16),
    inset 0 1px 0 rgba(219, 236, 255, 0.14);
  outline: none;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-result__title {
  font-weight: 600;
  letter-spacing: 0.005em;
  font-size: 1.02rem;
  line-height: 1.28;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-result__snippet {
  color: rgba(203, 222, 247, 0.88);
  font-size: 0.95rem;
  line-height: 1.52;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-result__meta {
  color: rgba(176, 200, 232, 0.74);
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.doc-search-overlay:not(.contact-overlay) .doc-search-result mark {
  background: rgba(118, 170, 255, 0.3);
  color: rgba(243, 249, 255, 0.99);
  padding: 0 2px;
  border-radius: 4px;
}

body.ls-checkout-open,
html.ls-checkout-open {
  overflow: hidden;
  overscroll-behavior: none;
  background: #0e1117;
}

body.ls-preopen,
html.ls-preopen {
  background: #0e1117;
}

.ls-checkout-open .page-wrap,
.ls-checkout-open main.page-wrap,
.ls-checkout-open .page-wrap--narrow {
  pointer-events: none;
}

.ls-checkout-open .ls-overlay-scrim {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(5, 10, 18, 0.72);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ls-checkout-open .ls-overlay-scrim.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ls-preopen-mask {
  position: fixed;
  inset: 0;
  z-index: 1600;
  background: #0e1117;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.ls-preopen-mask.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ls-preopen-mask__inner {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.ls-preopen-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(142, 225, 255, 0.25), rgba(5, 10, 18, 0.95) 70%);
  border: 1px solid rgba(83, 176, 255, 0.4);
  box-shadow:
    0 12px 26px rgba(2, 6, 14, 0.6),
    0 0 18px rgba(83, 176, 255, 0.35);
  position: relative;
}

.ls-preopen-mark::before {
  content: "";
  position: absolute;
  inset: 10px;
  background-image: var(--bg-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.85;
  filter: none;
}

.ls-preopen-spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(142, 225, 255, 0.2);
  border-top-color: rgba(142, 225, 255, 0.85);
  animation: ls-spin 0.9s linear infinite;
}

@keyframes ls-spin {
  to {
    transform: rotate(360deg);
  }
}

.lemonsqueezy-overlay,
#lemonsqueezy-overlay,
[class*="lemonsqueezy-overlay"],
.lemonsqueezy-embed__overlay,
.ls-overlay {
  background: rgba(5, 10, 18, 0.72) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.doc-search-overlay.contact-overlay {
  z-index: 2100;
  --contact-overlay-backdrop:
    radial-gradient(68% 62% at 74% 14%, rgba(86, 136, 252, 0.14) 0%, rgba(86, 136, 252, 0) 74%),
    linear-gradient(180deg, rgba(3, 7, 13, 0.9) 0%, rgba(2, 5, 11, 0.97) 100%);
  --contact-panel-bg: rgba(7, 12, 23, 0.97);
  --contact-panel-gradient: var(--surface-gradient-hero, linear-gradient(145deg, rgba(44, 62, 100, 0.95) 0%, rgba(18, 27, 45, 0.97) 42%, rgba(6, 10, 19, 0.996) 100%));
  --contact-panel-border: rgba(116, 170, 255, 0.48);
  --contact-panel-border-open: rgba(130, 186, 255, 0.58);
  --contact-panel-glow:
    0 0 0 1px rgba(118, 172, 255, 0.22),
    0 14px 28px rgba(0, 0, 0, 0.64);
  --contact-panel-glow-open:
    0 0 0 1px rgba(124, 178, 255, 0.28),
    0 16px 30px rgba(0, 0, 0, 0.66);
}

.doc-search-overlay.contact-overlay .doc-search-overlay__backdrop {
  background: var(--contact-overlay-backdrop);
  -webkit-backdrop-filter: blur(12px) saturate(122%);
  backdrop-filter: blur(12px) saturate(122%);
}

.doc-search-overlay.contact-overlay .contact-panel {
  --umm-current-surface-bg: var(--contact-panel-bg);
  --umm-current-surface-gradient: var(--contact-panel-gradient);
  --umm-current-surface-border: var(--contact-panel-border);
  --umm-current-surface-glow: var(--contact-panel-glow);
  --umm-current-surface-glow-hover: var(--contact-panel-glow-open);
  width: min(860px, 94vw);
  max-height: calc(100dvh - 28px);
  border-radius: var(--radius-xl, 22px);
  padding: clamp(24px, 2.6vw, 30px);
  border: var(--umm-border-width) solid var(--umm-current-surface-border);
  background-color: var(--umm-current-surface-bg);
  background-image: var(--umm-current-surface-gradient);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  box-shadow: var(--umm-current-surface-glow), var(--surface-inner-edge-highlight, inset 0 1px 0 rgba(184, 214, 255, 0.16));
  transform: translateY(14px) scale(0.99);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  color-scheme: dark;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.doc-search-overlay.contact-overlay.is-open .contact-panel {
  transform: translateY(0) scale(1);
  border-color: var(--contact-panel-border-open);
  box-shadow: var(--umm-current-surface-glow-hover), var(--surface-inner-edge-highlight, inset 0 1px 0 rgba(184, 214, 255, 0.16));
}

.contact-panel__header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(104, 154, 236, 0.16);
}

.contact-panel__heading {
  grid-column: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-panel__heading h2 {
  margin: 0;
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 610;
  color: var(--umm-text-strong, rgba(247, 251, 255, 0.98));
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.contact-panel__subtitle {
  margin: 10px auto 0;
  max-width: 64ch;
  color: var(--umm-text-muted, rgba(182, 192, 209, 0.92));
  font-size: 0.92rem;
}

.contact-close {
  position: static;
  grid-column: 3;
  justify-self: end;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(112, 165, 247, 0.3);
  background: rgba(14, 22, 38, 0.62);
  box-shadow:
    0 8px 16px rgba(5, 11, 23, 0.38),
    inset 0 1px 0 rgba(197, 222, 255, 0.12);
  color: rgba(234, 244, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-close:hover,
.contact-close:focus-visible {
  border-color: rgba(133, 187, 255, 0.44);
  background: rgba(24, 36, 60, 0.84);
  box-shadow:
    0 10px 18px rgba(5, 11, 23, 0.44),
    0 0 0 1px rgba(120, 174, 255, 0.16),
    inset 0 1px 0 rgba(219, 236, 255, 0.16);
}

.contact-close:focus-visible {
  outline: 2px solid rgba(194, 221, 255, 0.92);
  outline-offset: 2px;
}

.contact-form {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(142, 225, 255, 0.5) rgba(7, 12, 21, 0.8);
}

.contact-form::-webkit-scrollbar {
  width: 10px;
}

.contact-form::-webkit-scrollbar-track {
  background: rgba(7, 12, 21, 0.8);
  border-radius: 10px;
}

.contact-form::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(142, 225, 255, 0.55), rgba(83, 176, 255, 0.42));
  border-radius: 10px;
  border: 2px solid rgba(7, 12, 21, 0.8);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.69rem;
  font-weight: 560;
  color: rgba(169, 203, 255, 0.9);
}

.contact-input {
  margin-top: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(108, 161, 247, 0.25);
  background: linear-gradient(160deg, rgba(20, 30, 50, 0.95), rgba(10, 16, 29, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(206, 224, 255, 0.1),
    inset 0 0 0 1px rgba(6, 9, 14, 0.38);
  color: var(--umm-text-strong);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-input::placeholder {
  color: rgba(182, 192, 209, 0.74);
}

.contact-input:focus {
  outline: none;
  border-color: rgba(118, 170, 255, 0.42);
  box-shadow:
    0 0 0 2px rgba(110, 168, 255, 0.16),
    inset 0 1px 0 rgba(228, 240, 255, 0.14);
}

.contact-input:-webkit-autofill,
.contact-input:-webkit-autofill:hover,
.contact-input:-webkit-autofill:focus,
.contact-input:-webkit-autofill:active {
  -webkit-text-fill-color: rgba(243, 249, 255, 0.96);
  caret-color: rgba(243, 249, 255, 0.96);
  box-shadow:
    0 0 0 1000px rgba(12, 20, 36, 0.96) inset,
    inset 0 1px 0 rgba(228, 240, 255, 0.12);
  -webkit-box-shadow:
    0 0 0 1000px rgba(12, 20, 36, 0.96) inset,
    inset 0 1px 0 rgba(228, 240, 255, 0.12);
  transition: background-color 9999s ease-in-out 0s;
}

.contact-overlay input:-webkit-autofill,
.contact-overlay input:-webkit-autofill:hover,
.contact-overlay input:-webkit-autofill:focus,
.contact-overlay input:-webkit-autofill:active,
.contact-overlay textarea:-webkit-autofill,
.contact-overlay textarea:-webkit-autofill:hover,
.contact-overlay textarea:-webkit-autofill:focus,
.contact-overlay textarea:-webkit-autofill:active,
.contact-overlay select:-webkit-autofill,
.contact-overlay select:-webkit-autofill:hover,
.contact-overlay select:-webkit-autofill:focus,
.contact-overlay select:-webkit-autofill:active {
  -webkit-text-fill-color: rgba(243, 249, 255, 0.96);
  caret-color: rgba(243, 249, 255, 0.96);
  box-shadow: 0 0 0 1000px rgba(12, 20, 36, 0.96) inset;
  -webkit-box-shadow: 0 0 0 1000px rgba(12, 20, 36, 0.96) inset;
  transition: background-color 9999s ease-in-out 0s;
}

.contact-select {
  position: relative;
}

.contact-select select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding-right: 42px;
}

.contact-select select,
.contact-select option {
  background-color: #0b1527;
  color: rgba(243, 249, 255, 0.96);
}

.contact-select select:invalid {
  color: rgba(182, 192, 209, 0.85);
}

.contact-select__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(182, 214, 255, 0.9);
  border-bottom: 2px solid rgba(182, 214, 255, 0.9);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.contact-helper {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: rgba(182, 192, 209, 0.84);
  line-height: 1.55;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-textarea {
  min-height: 168px;
  padding: 14px;
  resize: vertical;
  line-height: 1.58;
  color-scheme: dark;
}

.contact-textarea::-webkit-scrollbar {
  width: 10px;
}

.contact-textarea::-webkit-scrollbar-track {
  background: rgba(7, 12, 21, 0.8);
  border-radius: 10px;
}

.contact-textarea::-webkit-scrollbar-track-piece,
.contact-textarea::-webkit-scrollbar-corner,
.contact-textarea::-webkit-resizer {
  background: rgba(7, 12, 21, 0.8);
}

.contact-textarea::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(142, 225, 255, 0.56), rgba(83, 176, 255, 0.4));
  border-radius: 10px;
  border: 2px solid rgba(7, 12, 21, 0.8);
}

.contact-error {
  min-height: 0;
  margin: 2px 0 0;
  text-align: center;
  color: #ffd2d2;
  font-size: 0.86rem;
}

.contact-error:not(:empty) {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 128, 128, 0.35);
  background: rgba(58, 18, 27, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 197, 197, 0.14);
}

.contact-actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.doc-search-overlay.contact-overlay .contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 190px);
  min-height: 46px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid rgba(99, 149, 228, 0.62) !important;
  background: linear-gradient(180deg, rgba(48, 89, 172, 0.98), rgba(32, 63, 125, 0.98)) !important;
  box-shadow:
    0 6px 14px rgba(6, 16, 34, 0.36),
    inset 0 1px 0 rgba(194, 218, 255, 0.14) !important;
  color: rgba(243, 249, 255, 0.97) !important;
  font-size: 1rem;
  font-weight: 660;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.doc-search-overlay.contact-overlay .contact-submit::before {
  content: '';
  position: absolute;
  inset: 1px 1px auto;
  height: 42%;
  border-radius: 10px 10px 8px 8px;
  background: linear-gradient(180deg, rgba(219, 236, 255, 0.14), rgba(219, 236, 255, 0));
  pointer-events: none;
}

.doc-search-overlay.contact-overlay .contact-submit:hover,
.doc-search-overlay.contact-overlay .contact-submit:focus-visible {
  border-color: rgba(128, 184, 255, 0.74) !important;
  background: linear-gradient(180deg, rgba(76, 124, 218, 0.98), rgba(52, 96, 180, 0.98)) !important;
  box-shadow:
    0 0 0 1px rgba(114, 174, 255, 0.26),
    0 0 8px rgba(92, 154, 255, 0.2),
    0 8px 16px rgba(6, 16, 34, 0.42),
    inset 0 1px 0 rgba(226, 240, 255, 0.2) !important;
}

.doc-search-overlay.contact-overlay .contact-submit:active {
  border-color: rgba(87, 141, 224, 0.62) !important;
  background: linear-gradient(180deg, rgba(38, 74, 143, 0.98), rgba(25, 50, 101, 0.98)) !important;
  box-shadow:
    0 5px 12px rgba(6, 16, 34, 0.32),
    inset 0 1px 0 rgba(184, 212, 255, 0.1) !important;
}

.doc-search-overlay.contact-overlay .contact-submit:focus-visible {
  outline: 2px solid rgba(194, 221, 255, 0.92);
  outline-offset: 3px;
}

.contact-success {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  text-align: center;
  min-height: clamp(160px, 24vh, 230px);
  align-content: center;
  justify-items: center;
  flex: 1;
  padding: clamp(18px, 3vw, 24px);
  border-radius: 14px;
  border: 1px solid rgba(108, 163, 247, 0.34);
  background: linear-gradient(160deg, rgba(16, 27, 47, 0.88), rgba(8, 14, 26, 0.96));
  box-shadow:
    0 0 0 1px rgba(111, 165, 250, 0.16),
    0 14px 28px rgba(0, 0, 0, 0.46);
}

.contact-success p {
  margin: 0;
}

.contact-success p:first-child {
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  font-weight: 620;
  color: rgba(243, 249, 255, 0.97);
}

.contact-success .muted {
  color: rgba(182, 192, 209, 0.92);
}


.btn[disabled],
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 720px) {
  .doc-search-overlay.contact-overlay {
    padding: 12px;
  }

  .doc-search-overlay.contact-overlay .contact-panel {
    width: min(700px, 100%);
    max-height: calc(100dvh - 14px);
    padding: clamp(16px, 4vw, 20px);
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel__header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-bottom: 12px;
  }

  .contact-panel__heading {
    grid-column: auto;
    text-align: center;
  }

  .contact-panel__heading h2 {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .contact-close {
    order: -1;
    align-self: flex-end;
    margin-left: auto;
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .doc-search-overlay.contact-overlay .contact-submit {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .doc-search-trigger {
    flex-direction: column;
    gap: 8px;
    min-width: min(320px, calc(100vw - 48px));
    max-width: 100%;
  }

  .doc-search-overlay:not(.contact-overlay) {
    padding: 12px;
  }

  .doc-search-overlay:not(.contact-overlay) .doc-search-panel {
    width: min(700px, 100%);
    max-height: calc(100dvh - 14px);
    padding: clamp(16px, 4vw, 20px);
  }

  .doc-search-overlay:not(.contact-overlay) .doc-search-panel__header {
    flex-direction: column;
    gap: 10px;
  }

  .doc-search-overlay:not(.contact-overlay) .doc-search-close {
    align-self: flex-start;
  }

  .hero__actions {
    display: none;
  }
}

.docs {
  --docs-s1: 8px;
  --docs-s2: 12px;
  --docs-s3: 16px;
  --docs-s4: 24px;
  --docs-s5: 32px;
  --docs-s6: 48px;
  --docs-card-padding: clamp(20px, 3vw, 28px);
  --docs-card-radius: 14px;
  --docs-card-border: 1px solid rgba(112, 168, 246, 0.22);
  --docs-card-shadow: var(--shadow-soft);
  padding-bottom: clamp(28px, 5vw, 56px);
}

.docs__container {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  gap: var(--docs-s4);
}

.docs__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--docs-s4);
  padding: var(--docs-card-padding);
  border: 1px solid rgba(132, 185, 255, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(19, 30, 48, 0.78), rgba(9, 15, 24, 0.9)),
    radial-gradient(120% 180% at 0% -40%, rgba(98, 163, 255, 0.18), rgba(98, 163, 255, 0));
  box-shadow: var(--docs-card-shadow);
}

.docs__header-main {
  min-width: 0;
}

.docs__header-main h1 {
  margin: 0;
  font-size: clamp(1.72rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.docs__intro {
  margin: var(--docs-s2) 0 0;
  color: rgba(220, 232, 248, 0.9);
  max-width: min(72ch, 100%);
}

.docs__header-actions {
  width: min(360px, 100%);
  display: grid;
  gap: var(--docs-s2);
  justify-items: stretch;
  align-content: start;
}

.docs__header-actions .doc-search-trigger {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 var(--docs-s3);
  align-items: center;
}

.docs__version-label {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(183, 207, 238, 0.84);
}

.docs__version-select {
  width: 100%;
  min-height: 44px;
  height: 44px;
  padding: 0 var(--docs-s3);
  border-radius: 10px;
  border: 1px solid rgba(113, 172, 255, 0.55);
  background: rgba(10, 16, 28, 0.96);
  color: rgba(241, 248, 255, 0.96);
  font: inherit;
  line-height: 1.2;
}

.docs__version-select:focus-visible {
  outline: none;
  border-color: rgba(141, 200, 255, 0.95);
  box-shadow: 0 0 0 2px rgba(83, 176, 255, 0.35);
}

.docs__body {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: var(--docs-s4);
  align-items: start;
}

.docs__body > :last-child {
  min-width: 0;
}

.docs__toc {
  margin: 0;
  padding: clamp(18px, 2.5vw, 22px);
  border-radius: var(--radius);
  border: var(--docs-card-border);
  background: linear-gradient(170deg, rgba(19, 29, 45, 0.86), rgba(11, 17, 27, 0.92));
  box-shadow: var(--docs-card-shadow);
  position: sticky;
  top: calc(var(--launch-mobile-header-offset, 88px) + var(--docs-s3));
}

.docs__toc h2 {
  margin: 0 0 var(--docs-s2);
  text-align: left;
  font-size: 1.02rem;
}

.docs__toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--docs-s1);
}

.docs__toc li {
  margin: 0;
}

.docs__toc li > ol {
  margin-top: var(--docs-s1);
  padding-left: var(--docs-s2);
}

.docs__toc a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: var(--docs-s1) var(--docs-s2);
  border-radius: 10px;
  border: 1px solid rgba(120, 175, 250, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(218, 231, 250, 0.92);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.45;
}

.docs__toc a:hover,
.docs__toc a:focus-visible {
  border-color: rgba(154, 205, 255, 0.52);
  background: rgba(104, 166, 255, 0.12);
  color: rgba(243, 250, 255, 0.99);
  outline: none;
}

.docs__toc a.is-active,
.docs__toc a[aria-current="true"] {
  border-color: rgba(159, 212, 255, 0.7);
  background: rgba(84, 153, 255, 0.2);
  color: rgba(246, 251, 255, 0.99);
}

.docs__content {
  display: block;
  min-width: 0;
  width: 100%;
  column-count: 1;
  column-width: auto;
}

.docs__content > .doc-section + .doc-section {
  margin-top: var(--docs-s3);
}

.docs__content .doc-section {
  padding: var(--docs-card-padding);
  border-radius: var(--docs-card-radius);
  border: var(--docs-card-border);
  background: linear-gradient(164deg, rgba(20, 28, 42, 0.86), rgba(11, 17, 28, 0.94));
  box-shadow: var(--docs-card-shadow);
}

.docs__content .doc-section h2,
.docs__content .doc-section h3,
.docs__content .doc-section h4 {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.docs__content .doc-section > p:first-of-type,
.docs__content .doc-section h3 + p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.docs__content .doc-section p,
.docs__content .doc-section li {
  max-width: none;
}

.docs__content .doc-section ul,
.docs__content .doc-section ol {
  padding-left: 22px;
}

.docs__content .doc-card,
.docs__content .faq-item,
.docs__content .uninstall-card {
  padding: var(--docs-card-padding);
  border-radius: var(--docs-card-radius);
  border: var(--docs-card-border);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
  width: 100%;
  max-width: none;
}

.docs__content .doc-card--center,
.docs__content .doc-subcard,
.docs__content .doc-subcard h3,
.docs__content .doc-subcard p,
.docs__content .faq-text-center,
.docs__content .faq-item h3 {
  text-align: left !important;
  align-items: flex-start;
}

.docs__content .doc-card--center .feature-list {
  margin-left: 0;
}

.docs__content .doc-card p,
.docs__content .doc-card li,
.docs__content .faq-item p,
.docs__content .faq-item li,
.docs__content .uninstall-card p,
.docs__content .uninstall-card li {
  line-height: 1.66;
}

.docs__content .feature-list {
  width: 100%;
  max-width: none;
  margin: 0 0 var(--docs-s3);
  padding-left: 0;
  gap: var(--docs-s2);
}

.docs__content .feature-list li {
  background: rgba(255, 255, 255, 0.015);
  padding: var(--docs-s2) var(--docs-s3);
}

.docs-grid {
  display: grid;
  gap: var(--docs-s3);
  grid-template-columns: 1fr;
  align-items: start;
  column-count: 1;
  column-width: auto;
}

.docs-grid--quick-start,
.docsGridQuickStart {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
}

.docs-grid--quick-start .doc-card {
  min-height: 180px;
}

.docs-grid--quick-start .doc-card--quickstart-full {
  grid-column: 1 / -1;
  min-height: 0;
  max-width: 860px;
  justify-self: center;
}

.docs-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.docs-grid--three,
.docs-grid--settings,
.docsGridInterface {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.docs-grid--settings .doc-card--wide,
.docsGridInterface .doc-card--wide {
  grid-column: 1 / -1;
  margin-bottom: var(--docs-s2);
}

.docs__content .doc-card--compact {
  padding: 14px 18px;
  min-height: 0;
  gap: var(--docs-s1);
}

.docs__content .doc-card--compact h3 {
  font-size: 1.05rem;
  line-height: 1.28;
}

.docs__content .doc-card--compact p,
.docs__content .doc-card--compact li {
  line-height: 1.58;
}

.docs__content .feature-list--row {
  gap: var(--docs-s1);
}

.docs__content .feature-list--row li {
  display: block;
  min-height: 0;
  padding: 12px 16px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
  box-shadow: none;
  line-height: 1.56;
  column-count: 1;
}

.docs__content .doc-card--wide .feature-list li {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.docs__content .docs-assignment {
  display: grid;
  gap: var(--docs-s2);
  min-height: 0;
  padding-top: 0;
  margin-top: 0;
  column-count: 1;
}

.docs__content .docs-assignment > p {
  margin: 0;
}

.docs__content .docs-assignment > ul {
  margin: 0;
  padding-left: 20px;
}

.docs__content .docs-assignment-example {
  margin-top: 12px;
  min-height: 0;
  padding: 24px;
  border-radius: var(--docs-card-radius);
  border: var(--docs-card-border);
  background: rgba(255, 255, 255, 0.02);
}

.docs__content .docs-assignment::before,
.docs__content .docs-assignment-example::before {
  content: none;
  display: none;
  height: 0;
}

.docs__content .docs-assignment-example p + p {
  margin-top: var(--docs-s1);
}

.docs__content .docs-assignment-example ul {
  margin: var(--docs-s1) 0 0;
  padding-left: 20px;
}

.docs__content .doc-card > :first-child {
  margin-top: 0;
}

.docs__content .doc-card > :last-child {
  margin-bottom: 0;
}

.docs__content .docs-assignment-example > :first-child {
  margin-top: 0;
}

.docs__content .docs-assignment-example > :last-child {
  margin-bottom: 0;
}

.docs__content .faq-list {
  max-width: none;
  margin: 0;
  gap: var(--docs-s3);
}

.docs__content .faq-item > p,
.docs__content .faq-item ul + p,
.docs__content .faq-item ol + p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.docs__content figure {
  margin: var(--docs-s4) 0;
  display: grid;
  gap: var(--docs-s2);
  justify-items: center;
}

.docs__content .screenshot picture,
.docs__content .screenshot img {
  width: min(100%, 860px);
  margin: 0 auto;
  display: block;
  border-radius: 12px;
}

.docs__content .screenshot img {
  max-height: 70vh;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
}

.docs__content .screenshot figcaption {
  text-align: center;
  color: rgba(185, 206, 233, 0.82);
  font-size: 0.88rem;
}

.docs__content a {
  color: rgba(207, 231, 255, 0.97);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.docs__content a:hover,
.docs__content a:focus-visible {
  color: #f4f9ff;
}

.docs__content pre {
  margin: 0 0 var(--docs-s3);
  padding: var(--docs-s3);
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid rgba(120, 176, 250, 0.28);
  background: rgba(7, 12, 22, 0.95);
}

.docs__content code {
  background: rgba(7, 12, 22, 0.94);
  border: 1px solid rgba(120, 176, 250, 0.24);
  border-radius: 5px;
  padding: 0 4px;
}

.docs__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--docs-s3);
}

.docs__content th,
.docs__content td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--docs-s2) var(--docs-s3);
  text-align: left;
}

.docs__content th {
  background: rgba(255, 255, 255, 0.04);
}

.docs-note-line {
  display: block;
  margin-top: var(--docs-s1);
}

.docs__rule {
  margin: var(--docs-s2) 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.docs-callout {
  width: min(100%, 78ch);
  margin: var(--docs-s3) 0;
  padding: var(--docs-s4);
  border-radius: 12px;
  border: 1px solid rgba(116, 173, 255, 0.34);
  background: rgba(49, 102, 176, 0.14);
}

.docs-callout strong:first-child {
  display: inline-flex;
  margin-bottom: var(--docs-s1);
  font-weight: 700;
}

.docs-callout p + p {
  margin-top: var(--docs-s2);
}

.docs-callout--heads-up {
  border-color: rgba(194, 64, 64, 0.6);
  background: rgba(194, 64, 64, 0.12);
  color: #f8d7da;
}

.docs-callout--tip {
  border-color: rgba(123, 187, 255, 0.46);
  background: rgba(41, 84, 150, 0.18);
}

.docs__content .step-list {
  max-width: none;
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: workflow-step;
  gap: var(--docs-s1);
}

.docs__content .step-list > li {
  position: relative;
  margin: 0;
  padding: 12px 16px 12px 44px;
  border-radius: 9px;
  border: 1px solid rgba(120, 175, 250, 0.2);
  background: rgba(255, 255, 255, 0.008);
  box-shadow: none;
  width: auto;
  max-width: none;
}

.docs__content .step-list > li.stepPill {
  box-shadow: none;
  max-width: 760px;
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
  padding: 10px 14px 10px 42px;
}

.docs__content .step-list > li::before {
  counter-increment: workflow-step;
  content: "0" counter(workflow-step);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(161, 202, 248, 0.9);
}

.docs__container--latest {
  max-width: 760px;
}

.docs__header--latest {
  align-items: flex-end;
}

.docs__latest-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--docs-s2);
}

.docs__latest-button {
  min-height: 46px;
  justify-content: center;
}

.docs__latest-note {
  margin: 0;
  color: rgba(185, 206, 233, 0.82);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .docs__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .docs__header-actions {
    width: 100%;
    max-width: 420px;
  }

  .docs__body {
    grid-template-columns: 1fr;
    gap: var(--docs-s3);
  }

  .docs__toc {
    position: sticky;
    top: calc(var(--launch-mobile-header-offset, 88px) + var(--docs-s1));
    z-index: 8;
  }

  .docs-grid--two,
  .docs-grid--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .docs-grid--settings,
  .docsGridInterface {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 820px) {
  .docs-grid--quick-start,
  .docsGridQuickStart {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .docs-grid--settings,
  .docsGridInterface {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .docs__container {
    gap: var(--docs-s3);
  }

  .docs__header {
    gap: var(--docs-s3);
  }

  .docs__header-actions .doc-search-trigger {
    min-height: 42px;
  }

  .docs__latest-actions {
    grid-template-columns: 1fr;
  }
}

.doc-section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 6vw, 40px);
  margin: 0;
  box-shadow: var(--shadow);
}

.doc-section h2 {
  margin: 0 0 18px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-align: center; /* center section headlines */
}

.doc-section h3 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-align: center;
}

.doc-section h3 + p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch;
}

.doc-section p,
.doc-section ul,
.doc-section ol {
  margin: 0 0 16px;
  color: var(--muted-strong);
}

/* Center the lead paragraph under each section title */
.doc-section > p:first-of-type {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 68ch;
}

.doc-section code {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere; /* allow long file paths to wrap on small screens */
}

.doc-section h2,
.doc-section h3,
.doc-section h4,
.doc-section p,
.doc-section li {
  scroll-margin-top: 32px;
}

.doc-section ul,
.doc-section ol {
  padding-left: 22px;
}

.doc-section .feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto 16px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(640px, 100%);
}

.doc-section .feature-list li {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.doc-section .feature-list li strong {
  color: var(--text);
}

/* Keep docs manual lists driven by the docs-specific spacing system. */
.docs__content .doc-section .feature-list {
  width: 100%;
  max-width: none;
  margin: 0 0 var(--docs-s3);
  padding-left: 0;
  gap: var(--docs-s2);
}

.docs__content .doc-section .step-list {
  max-width: none;
  margin: 0;
  padding-left: 0;
}

.doc-grid {
  display: grid;
  gap: 24px;
  align-items: start; /* prevent equal-height stretch so cards don't leave empty space */
  justify-items: stretch;
}

.doc-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.doc-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.doc-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.doc-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.doc-card--center {
  text-align: center;
  align-items: center;
}

/* Extra top spacing when following grids */
.doc-card--spaced {
  margin-top: 24px;
}

.doc-card--spaced .feature-list {
  margin-bottom: 0;
}

.uninstall {
  background: var(--panel);
}

.uninstall-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 26px);
}

.uninstall-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 28px);
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.uninstall-card h3 {
  text-align: center;
  font-size: 1.15rem;
}

.uninstall-card h4 {
  margin: 12px 0 8px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.uninstall-card ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.uninstall-card--wide {
  grid-column: 1 / -1;
}

.uninstall code {
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  background: transparent;
  color: var(--text);
  border-radius: 0;
  padding: 0 2px;
  border: none;
  display: inline;
  line-height: 1.35;
  letter-spacing: 0;
  font-size: 0.95em;
}

.uninstall-card li {
  margin-bottom: 8px;
}

.uninstall-card li:last-child {
  margin-bottom: 0;
}

/* Subsection callout card used under a doc section title */
.doc-subcard {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: clamp(8px, 2vw, 12px) 0;
  margin: 12px auto 6px;
  box-shadow: none;
  text-align: center !important;
  width: 100%;
}

.doc-subcard h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 650;
  text-align: center;
}

.doc-subcard p {
  margin: 0;
  font-size: 0.95rem;
  text-align: center !important;
}

.feature-list--divider {
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-list--divider + .feature-list {
  margin-top: 6px;
}

.feature-divider {
  margin: 22px auto 24px;
  width: min(640px, 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  height: 1px;
}

.tool-cards {
  display: grid;
  gap: 24px;
  margin-top: 32px;
  grid-template-columns: 1fr; /* one card per row */
}

.tool-cards .doc-card,
.tool-cards .card {
  gap: 12px;
}

.tool-cards p {
  margin: 0;
  color: var(--muted-strong);
}

.screenshot {
  margin: 30px 0;
}

.screenshot picture,
.screenshot img {
  display: block;
  margin: 0 auto;
  width: min(100%, 1040px);
  height: auto;
  border-radius: var(--radius-sm);
}

/* On desktop, show screenshots at ~80% of content width */
@media (min-width: 960px) {
  .screenshot picture,
  .screenshot img {
    width: min(80%, 1040px);
  }
}

.screenshot.placeholder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.placeholder-box {
  width: 100%;
  height: clamp(220px, 35vw, 320px);
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  background: repeating-linear-gradient(
      -45deg,
      rgba(77, 166, 255, 0.12),
      rgba(77, 166, 255, 0.12) 16px,
      rgba(255, 255, 255, 0.04) 16px,
      rgba(255, 255, 255, 0.04) 32px
    ),
    rgba(255, 255, 255, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-align: center;
}

.screenshot figcaption {
  margin-top: 12px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  text-align: center;
}

.version-list {
  width: 100%;
  max-width: 520px;
  margin: 8px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.version-item {
  background: rgba(21, 25, 34, 0.7);
  border: 1px solid rgba(142, 225, 255, 0.18);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: none;
}

.version-item strong {
  display: block;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.version-item span {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.note {
  font-size: 0.85rem;
  color: rgba(184, 193, 216, 0.75);
}

.callout {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(83, 176, 255, 0.12);
  color: var(--muted-strong);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.callout.warn {
  background: rgba(255, 171, 64, 0.14);
}

.callout.success {
  background: rgba(40, 199, 111, 0.14);
}

.faq-list {
  display: grid;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  text-align: center;
}

.faq-item ul {
  margin: 0 auto 16px;
  padding-left: 26px;
  max-width: 70ch;
}

.faq-item ol {
  margin: 0 auto 16px;
  padding-left: 26px;
  max-width: 70ch;
}

.faq-item > p {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 70ch;
}

.faq-item ul + p,
.faq-item ol + p {
  text-align: center;
  margin-top: 12px;
}

.faq-item li {
  margin-bottom: 10px;
}

.faq-item li:last-child {
  margin-bottom: 0;
}

.faq-text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 70ch;
}

.faq-item > p.faq-text-center {
  text-align: center;
}

.inline {
  color: var(--accent);
  text-decoration: none;
}

.inline:hover,
.inline:focus-visible {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .card {
    padding: clamp(24px, 8vw, 48px);
  }

  .hero {
    padding: clamp(28px, 10vw, 52px);
  }

  .toc {
    padding: clamp(24px, 10vw, 32px);
  }

  .toc ol {
    gap: 14px;
  }

  .toc a {
    padding: 12px 14px;
  }

  .doc-section {
    padding: clamp(24px, 9vw, 34px);
  }

  .doc-section h2 {
    font-size: 1.35rem;
  }

  .doc-grid.two,
  .doc-grid.three {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .doc-card {
    padding: clamp(22px, 8vw, 28px);
    width: min(520px, 100%);
  }

  .faq-item {
    padding: 20px;
  }

  /* Tighten spacing in Features card stack on mobile */
  .card--features {
    gap: 12px;
    padding: clamp(16px, 5.5vw, 28px);
  }
  .card--features .feature-image-wrap {
    padding: 0;
    margin-bottom: 8px;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
  }
  .card--features .feature-image-wrap img {
    border-radius: var(--radius-sm);
    display: block;
    width: 100%;
  }

  /* Remove padding around the video preview on mobile */
  .card--video {
    padding: 0;
  }
  .card--video > iframe {
    border-radius: var(--radius-sm);
  }

  /* Home feature sections: remove middle container visuals on mobile */
  .feature-wrap {
    --feature-wrap-bg: none;
    --feature-wrap-border: none;
    --feature-wrap-padding: 0px;
    --feature-wrap-shadow: none;
  }

  /* Make feature cards span the full content width on mobile */
  .grid.features-grid > * {
    flex: 1 1 100%;
  }

  /* Double spacing between plan cards on mobile */
  .plans-grid {
    gap: 40px !important;
  }
}

/* Default spacing between plan cards (non-mobile) */
.plans-grid {
  gap: clamp(20px, 5vw, 28px);
}

@media (min-width: 960px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* keep tool cards single-column even on wide screens */
  .tool-cards {
    grid-template-columns: 1fr;
  }
}

/* UMM 1.6 launch homepage */
/* UMM SURFACE SYSTEM — DO NOT OVERRIDE
 * Canonical tokens for every major panel surface.
 * No ad-hoc gradients, no one-off borders, no custom glow stacks per section.
 * Variant classes may only remap these tokens (pricing, FAQ, CTA, hero media).
 */
.umm16 {
  --max: 1200px;
  --umm16-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --h1: 56px;
  --h2: 34px;
  --h3: 20px;
  --p: 16px;
  --small: 12px;
  --umm-text-strong: rgba(247, 251, 255, 0.98);
  --umm-text-body: rgba(255, 255, 255, 0.78);
  --umm-text-muted: rgba(182, 192, 209, 0.92);
  --umm-text-kicker: rgba(110, 168, 255, 0.95);
  --umm-type-h2-size: var(--h2);
  --umm-type-h2-line: 1.2;
  --umm-type-h2-weight: 610;
  --umm-type-h2-track: -0.02em;
  --umm-type-h3-size: var(--h3);
  --umm-type-h3-line: 1.3;
  --umm-type-h3-weight: 610;
  --umm-type-h3-track: -0.01em;
  --umm-type-body-size: var(--p);
  --umm-type-body-line: var(--line-body);
  --umm-type-body-color: var(--umm-text-body);
  --umm-type-kicker-size: 12px;
  --umm-type-kicker-line: 1.12;
  --umm-type-kicker-weight: 560;
  --umm-type-kicker-track: 0.14em;
  --umm-type-kicker-opacity: 1;
  --launch-hero-copy-size: 18px;
  --umm-type-card-title-size: var(--h3);
  --umm-type-card-title-line: 1.3;
  --umm-type-card-title-weight: 620;
  --umm-type-card-title-track: -0.01em;
  --padY: clamp(56px, 7vw, 104px);
  --padX: 22px;
  --radius-xl: 22px;
  --radius-large: 16px;
  --radius-medium: 12px;
  --umm-border-width: 1px;
  --umm-surface-radius: var(--radius-large);
  --umm-bg: #0A0D12;
  --surface-bg: rgba(11, 15, 26, 0.94);
  --surface-gradient:
    linear-gradient(145deg, rgba(38, 54, 88, 0.92) 0%, rgba(16, 24, 40, 0.96) 42%, rgba(6, 10, 18, 0.996) 100%);
  --surface-border: rgba(102, 154, 255, 0.34);
  --glow-light:
    0 0 0 1px rgba(102, 154, 255, 0.15),
    0 10px 21px rgba(0, 0, 0, 0.62);
  --glow-medium:
    0 0 0 1px rgba(110, 162, 255, 0.22),
    0 12px 25px rgba(0, 0, 0, 0.62),
    0 16px 30px rgba(0, 0, 0, 0.5);
  --glow-strong:
    0 0 0 1px rgba(122, 174, 255, 0.34),
    0 0 14px rgba(88, 140, 255, 0.17),
    0 14px 27px rgba(0, 0, 0, 0.69);
  --glow-subtle:
    0 0 0 1px rgba(90, 136, 228, 0.1),
    0 7px 14px rgba(0, 0, 0, 0.5);
  --surface-hover-border: rgba(118, 170, 255, 0.36);
  --surface-glow-hover:
    0 0 0 1px rgba(118, 170, 255, 0.2),
    0 12px 24px rgba(0, 0, 0, 0.62);
  --surface-edge-contrast: inset 0 0 0 1px rgba(132, 184, 255, 0.22);
  --surface-inner-edge-highlight: inset 0 1px 0 rgba(184, 214, 255, 0.16);
  --surface-gradient-hero:
    linear-gradient(145deg, rgba(44, 62, 100, 0.95) 0%, rgba(18, 27, 45, 0.97) 42%, rgba(6, 10, 19, 0.996) 100%);
  --surface-gradient-pricing:
    linear-gradient(145deg, rgba(43, 62, 101, 0.95) 0%, rgba(17, 26, 44, 0.97) 41%, rgba(6, 10, 18, 0.996) 100%);
  --surface-bg-cta: rgba(16, 23, 36, 0.97);
  --surface-gradient-cta:
    none;
  --surface-gradient-faq:
    linear-gradient(145deg, rgba(24, 34, 56, 0.64) 0%, rgba(10, 14, 24, 0.956) 44%, rgba(8, 12, 21, 0.97) 100%);
  --faq-row-border-hover: rgba(112, 162, 248, 0.3);
  --faq-row-border-open: rgba(120, 170, 255, 0.34);
  --faq-row-glow-active:
    0 0 0 1px rgba(114, 164, 252, 0.18),
    0 0 9px rgba(86, 136, 234, 0.11),
    0 9px 16px rgba(0, 0, 0, 0.56);
  --paragraph-max: 58ch;
  --line-body: 1.62;
  --umm-anchor-offset: 86px;
  --umm-hero-ghost-bloom:
    radial-gradient(54% 48% at 74% 24%, rgba(214, 82, 190, 0.08) 0%, rgba(214, 82, 190, 0) 70%),
    radial-gradient(68% 56% at 60% 32%, rgba(86, 136, 252, 0.19) 0%, rgba(86, 136, 252, 0) 72%);
  --umm-hero-light:
    radial-gradient(118% 90% at 52% -8%, rgba(110, 150, 252, 0.27) 0%, rgba(67, 97, 177, 0.14) 44%, rgba(12, 17, 28, 0) 72%);
  --umm-hero-falloff: radial-gradient(128% 116% at 52% 34%, rgba(7, 10, 17, 0) 34%, rgba(7, 10, 17, 0.72) 100%);
  --umm-spotlight-light: radial-gradient(62% 46% at 70% 12%, rgba(72, 108, 186, 0.2), transparent 60%);
  --umm16-btn-glow:
    0 7px 21px rgba(0, 0, 0, 0.38);
  --umm16-btn-glow-hover:
    0 9px 27px rgba(0, 0, 0, 0.44);
  background: var(--umm-bg);
  color: var(--text);
  font-family: var(--umm16-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.umm16,
.umm16 button,
.umm16 input,
.umm16 select,
.umm16 textarea {
  font-family: var(--umm16-font);
}

.umm16 .launch-main {
  padding: 0 0 var(--padY);
  text-align: left;
}

.umm16 .launch-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--padX);
}

.umm16 .launch-topbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  border-bottom: 1px solid rgba(105, 156, 244, 0.24);
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.5) 0%, rgba(8, 12, 20, 0.4) 100%),
    radial-gradient(130% 180% at 50% -80%, rgba(97, 154, 252, 0.18), rgba(97, 154, 252, 0));
  box-shadow: 0 10px 22px rgba(4, 8, 16, 0.35);
  backdrop-filter: blur(16px) saturate(138%);
  -webkit-backdrop-filter: blur(16px) saturate(138%);
  transition: transform 220ms ease, border-bottom-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

/* Override no-composite-text guardrail for sticky chrome only. */
.umm16 .launch-topbar.no-composite-text {
  backdrop-filter: blur(16px) saturate(138%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(138%) !important;
}

.umm16 .launch-topbar.is-menu-open {
  border-bottom-color: rgba(132, 182, 255, 0.44);
  box-shadow: 0 14px 28px rgba(4, 8, 16, 0.45);
}

.umm16 .launch-topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}

.umm16 .launch-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 210px;
  justify-self: start;
}

.umm16 .launch-brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 0, 168, 0.35), rgba(59, 130, 246, 0.35));
  box-shadow: none;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.umm16 .launch-brand__mark-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.umm16 .launch-brand__title {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.08;
  gap: 3px;
}

.umm16 .launch-brand__name {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
}

.umm16 .launch-brand__product {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1.1;
}

.umm16 .launch-topbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245, 247, 250, 0.92);
  justify-self: center;
}

.umm16 .launch-topbar__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
  line-height: 1.2;
  color: rgba(245, 247, 250, 0.88);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.umm16 .launch-topbar__links a:hover,
.umm16 .launch-topbar__links a:focus-visible {
  border-color: rgba(110, 168, 255, 0.22);
  background: rgba(59, 130, 246, 0.1);
  color: rgba(245, 247, 250, 1);
  outline: none;
}

.umm16 .launch-topbar__links a[aria-current='page'] {
  border-color: rgba(118, 176, 255, 0.4);
  background: rgba(59, 130, 246, 0.16);
  color: rgba(245, 247, 250, 0.99);
  box-shadow: inset 0 0 0 1px rgba(121, 180, 255, 0.18);
}

.umm16 .launch-topbar__cta {
  white-space: nowrap;
  margin-left: 0;
  padding: 0 14px;
  min-height: 36px;
  border-radius: 10px;
  font-size: 10px;
  line-height: 1;
  font-weight: 660;
  justify-self: end;
}

.umm16 .launch-topbar__actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.umm16 .launch-topbar__menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
  border: 1px solid rgba(108, 163, 247, 0.48);
  background: linear-gradient(180deg, rgba(26, 43, 76, 0.96), rgba(15, 26, 47, 0.96));
  box-shadow:
    0 7px 15px rgba(5, 11, 23, 0.42),
    inset 0 1px 0 rgba(197, 222, 255, 0.14);
  color: rgba(238, 246, 255, 0.96);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.umm16 .launch-topbar__menu-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.umm16 .launch-topbar[data-menu='open'] .launch-topbar__menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.umm16 .launch-topbar[data-menu='open'] .launch-topbar__menu-line:nth-child(2) {
  opacity: 0;
}

.umm16 .launch-topbar[data-menu='open'] .launch-topbar__menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.umm16 .launch-topbar__mobile-panel {
  position: fixed;
  inset: 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1100;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.umm16::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 12, 0.56);
  -webkit-backdrop-filter: blur(5px) saturate(110%);
  backdrop-filter: blur(5px) saturate(110%);
  opacity: 0;
  pointer-events: none;
  z-index: 1140;
  transition: opacity 0.2s ease;
}

body.launch-resource-switcher-open.umm16::before {
  opacity: 1;
}

.launch-menu-open .umm16 main,
.launch-menu-open .umm16 .launch-main,
.launch-menu-open .umm16 .page-wrap,
.launch-menu-open .umm16 .page-wrap--narrow,
.launch-menu-open .umm16 .site-footer,
.launch-resource-switcher-open .umm16 main,
.launch-resource-switcher-open .umm16 .launch-main,
.launch-resource-switcher-open .umm16 .page-wrap,
.launch-resource-switcher-open .umm16 .page-wrap--narrow,
.launch-resource-switcher-open .umm16 .site-footer,
body.launch-menu-open.umm16 main,
body.launch-menu-open.umm16 .launch-main,
body.launch-menu-open.umm16 .page-wrap,
body.launch-menu-open.umm16 .page-wrap--narrow,
body.launch-menu-open.umm16 .site-footer,
body.launch-resource-switcher-open.umm16 main,
body.launch-resource-switcher-open.umm16 .launch-main,
body.launch-resource-switcher-open.umm16 .page-wrap,
body.launch-resource-switcher-open.umm16 .page-wrap--narrow,
body.launch-resource-switcher-open.umm16 .site-footer {
  filter: blur(2px) brightness(0.45);
  pointer-events: none;
  transition: filter 0.2s ease;
}

.umm16 .launch-topbar__mobile-menu {
  --umm-surface-radius: 16px;
  --umm-current-surface-bg: rgba(7, 12, 21, 0.98);
  --umm-current-surface-gradient:
    linear-gradient(148deg, rgba(36, 54, 89, 0.88) 0%, rgba(13, 22, 39, 0.96) 42%, rgba(5, 10, 18, 0.995) 100%);
  --umm-current-surface-border: rgba(101, 153, 244, 0.46);
  --umm-current-surface-glow:
    0 0 0 1px rgba(111, 165, 250, 0.2),
    0 17px 32px rgba(0, 0, 0, 0.6);
  --umm-current-surface-glow-hover:
    0 0 0 1px rgba(119, 172, 252, 0.22),
    0 19px 34px rgba(0, 0, 0, 0.62);
}

.umm16 .launch-topbar__mobile-title {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(169, 203, 255, 0.92);
}

.umm16 .launch-topbar__mobile-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.umm16 .launch-topbar__mobile-link {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(120, 174, 255, 0.24);
  background: rgba(13, 22, 39, 0.64);
  color: rgba(237, 245, 255, 0.95);
  text-decoration: none;
  font-size: 12px;
  font-weight: 590;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.umm16 .launch-topbar__mobile-link:hover,
.umm16 .launch-topbar__mobile-link:focus-visible {
  border-color: rgba(146, 194, 255, 0.42);
  background: rgba(22, 36, 62, 0.76);
  outline: none;
}

.umm16 .launch-topbar__mobile-link[aria-current='page'] {
  border-color: rgba(146, 194, 255, 0.48);
  background: rgba(26, 44, 74, 0.86);
  color: rgba(242, 248, 255, 0.98);
}

.umm16 .launch-topbar__mobile-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(120, 174, 255, 0),
    rgba(140, 190, 255, 0.54) 50%,
    rgba(120, 174, 255, 0)
  );
}

.umm16 .launch-topbar__mobile-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.umm16 .launch-topbar__mobile-actions .launch-btn {
  width: 100%;
  min-height: 42px;
  font-size: 12px;
}

.umm16 .launch-topbar--with-subnav {
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.47) 0%, rgba(8, 12, 20, 0.38) 100%),
    radial-gradient(130% 180% at 50% -80%, rgba(97, 154, 252, 0.15), rgba(97, 154, 252, 0));
}

.umm16 .launch-resource-switcher {
  margin: clamp(12px, 2.1vw, 18px) auto 0;
  display: none;
  position: static;
  z-index: auto;
}

.umm16 .launch-resource-switcher__dropdown {
  width: min(460px, 100%);
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(112, 165, 247, 0.28);
  background: rgba(10, 17, 30, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(118, 171, 252, 0.12),
    0 10px 20px rgba(4, 8, 16, 0.34);
  overflow: visible;
}

.umm16 .launch-resource-switcher__summary {
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  color: rgba(238, 245, 255, 0.96);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  list-style: none;
}

.umm16 .launch-resource-switcher__summary::-webkit-details-marker {
  display: none;
}

.umm16 .launch-resource-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(112, 165, 247, 0.32);
  border-radius: 10px;
  background: rgba(8, 14, 26, 0.92);
  backdrop-filter: blur(12px) saturate(132%);
  -webkit-backdrop-filter: blur(12px) saturate(132%);
  box-shadow:
    0 16px 34px rgba(2, 6, 12, 0.58),
    inset 0 0 0 1px rgba(118, 171, 252, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1160;
}

.umm16 .launch-resource-switcher__dropdown[open] .launch-resource-switcher__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.umm16 .launch-resource-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 9px;
  border: 1px solid rgba(112, 165, 247, 0.26);
  text-decoration: none;
  color: rgba(221, 236, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  background: rgba(14, 22, 38, 0.56);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.umm16 .launch-resource-switcher__link:hover,
.umm16 .launch-resource-switcher__link:focus-visible {
  border-color: rgba(133, 187, 255, 0.42);
  background: rgba(24, 36, 60, 0.8);
  color: rgba(241, 247, 255, 0.98);
  outline: none;
}

.umm16 .launch-resource-switcher__link[aria-current='page'] {
  border-color: rgba(153, 206, 255, 0.74);
  background: rgba(47, 70, 108, 0.94);
  color: rgba(245, 249, 255, 0.99);
  box-shadow:
    inset 0 0 0 1px rgba(174, 216, 255, 0.32),
    0 0 0 1px rgba(108, 167, 255, 0.18);
}

.umm16 .launch-resource-subnav {
  min-height: 48px;
  border-top: 1px solid rgba(91, 142, 224, 0.16);
  border-bottom: 1px solid rgba(91, 142, 224, 0.22);
  background:
    linear-gradient(180deg, rgba(10, 15, 26, 0.47), rgba(8, 12, 20, 0.38)),
    radial-gradient(82% 180% at 50% -76%, rgba(107, 165, 255, 0.14), rgba(107, 165, 255, 0));
  box-shadow: inset 0 -1px 0 rgba(122, 176, 255, 0.08);
  backdrop-filter: blur(14px) saturate(132%);
  -webkit-backdrop-filter: blur(14px) saturate(132%);
}

.umm16 .launch-resource-subnav__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
}

.umm16 .launch-resource-subnav__links {
  width: 100%;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.umm16 .launch-resource-subnav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 11px;
  border-radius: 9px;
  border: 1px solid rgba(112, 165, 247, 0.26);
  text-decoration: none;
  color: rgba(221, 236, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  background: rgba(14, 22, 38, 0.56);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.umm16 .launch-resource-subnav__links a:hover,
.umm16 .launch-resource-subnav__links a:focus-visible {
  border-color: rgba(133, 187, 255, 0.42);
  background: rgba(24, 36, 60, 0.8);
  color: rgba(241, 247, 255, 0.98);
  outline: none;
}

.umm16 .launch-resource-subnav__links a[aria-current='page'] {
  border-color: rgba(153, 206, 255, 0.74);
  background: rgba(47, 70, 108, 0.94);
  color: rgba(245, 249, 255, 0.99);
  box-shadow:
    inset 0 0 0 1px rgba(174, 216, 255, 0.32),
    0 0 0 1px rgba(108, 167, 255, 0.18);
}

.umm16 .launch-section,
.umm16 .launch-hero {
  padding: var(--padY) 0;
}

.umm16 .no-composite-text,
.umm16 .no-composite-text > .launch-shell,
.umm16 .no-composite-text .launch-shell,
.umm16 .no-composite-text .launch-grid,
.umm16 .no-composite-text .launch-card,
.umm16 .no-composite-text .umm-surface,
.umm16 .no-composite-text .launch-final-strip {
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  perspective: none !important;
  will-change: auto !important;
  contain: none !important;
}

.umm16 section {
  padding: var(--padY) 0;
}

.umm16 #tools,
.umm16 #cases,
.umm16 #production {
  padding-top: calc(var(--padY) * 1.12);
}

.umm16 .launch-hero {
  padding-top: clamp(42px, 6vw, 88px);
  padding-bottom: clamp(38px, 6vw, 84px);
}

.umm16 .hero,
.umm16 #materializer {
  position: relative;
  isolation: isolate;
}

.umm16 #materializer {
  padding-top: calc(var(--padY) * 0.92);
}

.umm16 .hero {
  background: none;
  background-image: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.umm16 .hero::before {
  content: '';
  position: absolute;
  inset: -8%;
  border-radius: var(--radius-xl);
  background-image: var(--umm-hero-ghost-bloom), var(--umm-hero-light), var(--umm-hero-falloff);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%;
  opacity: 0.74;
  filter: none;
  pointer-events: none;
  z-index: 0;
  transform: none;
  animation: none;
}

.umm16 .launch-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: radial-gradient(34% 44% at 80% 41%, rgba(94, 146, 255, 0.31) 0%, rgba(94, 146, 255, 0) 64%);
  pointer-events: none;
  z-index: 0;
  transform: none;
  animation: none;
}

.umm16 #materializer::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - (var(--padX) * 2)));
  border-radius: var(--radius-xl);
  background: var(--umm-spotlight-light);
  opacity: 0.29;
  pointer-events: none;
  z-index: 0;
}

.umm16 .hero > *,
.umm16 #materializer > * {
  position: relative;
  z-index: 1;
}

.umm16 .launch-anchor {
  scroll-margin-top: var(--umm-anchor-offset);
}

.umm16 .launch-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    'copy media'
    'meta .';
  column-gap: 20px;
  row-gap: 0;
  align-items: end;
}

.umm16 .launch-hero__copy {
  grid-area: copy;
  display: grid;
  align-content: end;
  gap: 18px;
  max-width: min(100%, 38rem);
  min-width: 0;
}

.umm16 .launch-hero__meta-block {
  grid-area: meta;
  max-width: min(100%, 38rem);
  min-width: 0;
}

.umm16 .launch-hero__grid > .launch-video-frame {
  grid-area: media;
  align-self: end;
}

.umm16 .launch-hero__motion-item {
  opacity: 1;
  transform: none;
  animation: none;
}

.umm16 .launch-hero__motion-item--1 {
  animation-delay: 20ms;
}

.umm16 .launch-hero__motion-item--2 {
  animation-delay: 100ms;
}

.umm16 .launch-hero__motion-item--3 {
  animation-delay: 180ms;
}

.umm16 .launch-hero__motion-item--4 {
  animation-delay: 260ms;
}

.umm16 .launch-hero__motion-item--5 {
  animation-delay: 340ms;
}

.umm16 .launch-main .launch-kicker {
  color: var(--umm-text-kicker);
  text-transform: uppercase;
  letter-spacing: var(--umm-type-kicker-track);
  font-size: var(--umm-type-kicker-size);
  line-height: var(--umm-type-kicker-line);
  font-weight: var(--umm-type-kicker-weight);
  opacity: 1;
  margin: 0 0 12px;
}

.umm16 .launch-hero__copy .launch-kicker,
.umm16 .launch-hero__copy h1 {
  margin: 0;
}

.umm16 .launch-hero__copy h1 {
  font-size: clamp(4rem, 5.2vw, 4.25rem);
  line-height: 0.99;
}

.umm16 .launch-hero__headline-line {
  display: block;
  white-space: nowrap;
}

.umm16 .launch-main h1,
.umm16 .launch-main h2,
.umm16 .launch-main h3 {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  text-transform: none;
  text-align: left;
}

.umm16 .launch-main h1 {
  font-size: var(--h1);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--umm-text-strong);
  font-weight: 600;
}

.umm16 .launch-main h1 .launch-hero__headline-sub {
  display: block;
  font-size: 93%;
  font-weight: 600;
  max-width: 28ch;
  white-space: normal;
  overflow-wrap: anywhere;
}

.umm16 .launch-hero__meta {
  opacity: 1;
}

.umm16 .launch-hero__meta-reveal {
  opacity: 1;
  animation: none;
}

.umm16 .launch-main h2 {
  font-size: var(--umm-type-h2-size);
  line-height: var(--umm-type-h2-line);
  letter-spacing: var(--umm-type-h2-track);
  margin: 0 0 14px;
  color: var(--umm-text-strong);
  font-weight: var(--umm-type-h2-weight);
}

.umm16 .launch-main h3 {
  font-size: var(--umm-type-h3-size);
  line-height: var(--umm-type-h3-line);
  letter-spacing: var(--umm-type-h3-track);
  margin: 0 0 10px;
  color: var(--umm-text-strong);
  font-weight: var(--umm-type-h3-weight);
}

.umm16 .launch-main p {
  margin: 0 0 16px;
  font-size: var(--umm-type-body-size);
  line-height: var(--umm-type-body-line);
  letter-spacing: 0;
  color: var(--umm-type-body-color);
  max-width: var(--paragraph-max);
}

.umm16 h1 {
  font-size: var(--h1);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.umm16 h2 {
  font-size: var(--umm-type-h2-size);
  line-height: var(--umm-type-h2-line);
  letter-spacing: var(--umm-type-h2-track);
  font-weight: var(--umm-type-h2-weight);
}

.umm16 h3 {
  font-size: var(--umm-type-h3-size);
  line-height: var(--umm-type-h3-line);
  letter-spacing: var(--umm-type-h3-track);
  font-weight: var(--umm-type-h3-weight);
}

.umm16 p,
.umm16 li {
  font-size: var(--umm-type-body-size);
  line-height: var(--umm-type-body-line);
  letter-spacing: 0;
  color: var(--umm-type-body-color);
  max-width: var(--paragraph-max);
}

.umm16 .launch-hero__lead {
  font-size: var(--launch-hero-copy-size);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 620;
  margin: 0;
  max-width: 560px;
}

.umm16 .launch-hero__intro {
  display: grid;
  gap: 12px;
  margin: 0;
}

.umm16 .launch-hero__checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 640px;
}

.umm16 .launch-hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--launch-hero-copy-size);
  line-height: 1.55;
  font-weight: 530;
}

.umm16 .launch-hero__checklist li::before {
  content: '\2713';
  flex: 0 0 auto;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.umm16 .launch-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.umm16 .launch-hero__cta-row--center {
  justify-content: center;
}

.umm16 .launch-pill-row {
  display: flex;
  gap: 14px 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.umm16 .launch-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(28, 34, 48, 0.48);
  color: rgba(245, 247, 250, 0.94);
  font-size: 13px;
}

.umm16 .launch-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(83, 176, 255, 0.32), transparent);
  margin: 18px 0;
}

.umm16 .launch-hero .launch-divider + .launch-small {
  margin-top: 16px;
}

.umm16 .launch-main .launch-small {
  font-size: var(--small);
  color: var(--umm-text-muted);
}

.umm16 .launch-main .launch-kicker,
.umm16 .launch-main .launch-small,
.umm16 .launch-main .launch-price,
.umm16 .launch-main .launch-video-title,
.umm16 .launch-main .muted {
  max-width: none;
}

.umm16 .launch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid rgba(99, 149, 228, 0.62);
  background: linear-gradient(180deg, rgba(48, 89, 172, 0.98), rgba(32, 63, 125, 0.98));
  box-shadow:
    0 6px 14px rgba(6, 16, 34, 0.36),
    inset 0 1px 0 rgba(194, 218, 255, 0.14);
  color: rgba(243, 249, 255, 0.97);
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 660;
  letter-spacing: 0.01em;
  transition:
    box-shadow 180ms ease-out,
    border-color 180ms ease-out,
    background 180ms ease-out,
    color 180ms ease-out;
}

.umm16 .launch-btn::before {
  content: '';
  position: absolute;
  inset: 1px 1px auto;
  height: 42%;
  border-radius: 10px 10px 8px 8px;
  background: linear-gradient(180deg, rgba(219, 236, 255, 0.14), rgba(219, 236, 255, 0));
  pointer-events: none;
}

.umm16 .btn {
  border-radius: 14px;
  box-shadow: var(--umm16-btn-glow);
}

.umm16 .launch-btn:hover,
.umm16 .launch-btn:focus-visible {
  border-color: rgba(128, 184, 255, 0.74);
  background: linear-gradient(180deg, rgba(76, 124, 218, 0.98), rgba(52, 96, 180, 0.98));
  box-shadow:
    0 0 0 1px rgba(114, 174, 255, 0.26),
    0 0 8px rgba(92, 154, 255, 0.2),
    0 8px 16px rgba(6, 16, 34, 0.42),
    inset 0 1px 0 rgba(226, 240, 255, 0.2);
  color: rgba(243, 249, 255, 0.97);
  transform: none;
}

.umm16 .launch-btn:active {
  border-color: rgba(87, 141, 224, 0.62);
  background: linear-gradient(180deg, rgba(38, 74, 143, 0.98), rgba(25, 50, 101, 0.98));
  box-shadow:
    0 5px 12px rgba(6, 16, 34, 0.32),
    inset 0 1px 0 rgba(184, 212, 255, 0.1);
  color: rgba(243, 249, 255, 0.97);
  transform: none;
}

.umm16 .launch-btn--primary,
.umm16 .btn-primary {
  border-color: rgba(99, 149, 228, 0.62);
  background: linear-gradient(180deg, rgba(48, 89, 172, 0.98), rgba(32, 63, 125, 0.98));
  color: rgba(243, 249, 255, 0.97);
}

.umm16 .launch-btn--primary:hover,
.umm16 .launch-btn--primary:focus-visible,
.umm16 .btn-primary:hover,
.umm16 .btn-primary:focus-visible {
  border-color: rgba(128, 184, 255, 0.74);
  background: linear-gradient(180deg, rgba(76, 124, 218, 0.98), rgba(52, 96, 180, 0.98));
  color: rgba(243, 249, 255, 0.97);
  filter: none;
  opacity: 1;
}

.umm16 .launch-btn--primary:active,
.umm16 .btn-primary:active {
  border-color: rgba(87, 141, 224, 0.62);
  background: linear-gradient(180deg, rgba(38, 74, 143, 0.98), rgba(25, 50, 101, 0.98));
  color: rgba(243, 249, 255, 0.97);
  filter: none;
  opacity: 1;
}

.umm16 .launch-btn:disabled,
.umm16 .launch-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.umm16 .launch-btn:focus-visible {
  outline: 2px solid rgba(194, 221, 255, 0.92);
  outline-offset: 3px;
}

.umm16 .launch-topbar__actions .launch-topbar__cta.launch-btn {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 10px;
  line-height: 1;
}

.umm16 .launch-video-frame {
  overflow: hidden;
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.umm16 .launch-video-frame--preview::before {
  content: '';
  position: absolute;
  inset: -10% -8%;
  border-radius: inherit;
  background: radial-gradient(54% 56% at 50% 50%, rgba(59, 130, 246, 0.26) 0%, rgba(59, 130, 246, 0) 72%);
  filter: none;
  opacity: 0.55;
  transform: none;
  animation: none;
  pointer-events: none;
  z-index: 0;
}

.umm16 .launch-video-frame--preview {
  width: 100%;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

.umm16 .launch-video-frame--preview picture,
.umm16 .launch-video-frame--preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  z-index: 1;
}

.umm16 .launch-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.umm16 .launch-video-frame::after {
  content: none;
}

.umm16 .launch-video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.umm16 .launch-video-frame--preview .launch-play {
  margin: 0;
}

.umm16 .launch-play {
  width: clamp(44px, 11.2%, 74px);
  aspect-ratio: 43 / 30;
  height: auto;
  position: relative;
  border-radius: 20%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(180deg, rgba(255, 24, 24, 0.98), rgba(230, 0, 0, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 16px 36px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 0, 0, 0.24),
    0 0 20px rgba(255, 0, 0, 0.34);
  display: grid;
  place-items: center;
  margin: 0 auto;
  transform: translateZ(0);
  will-change: transform, box-shadow;
}

.umm16 .launch-play::before {
  content: '';
  width: 31%;
  height: 36%;
  background: rgba(255, 255, 255, 0.98);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateX(8%);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.38));
}

.umm16 .launch-play::after {
  content: '';
  position: absolute;
  inset: -11%;
  border-radius: 28%;
  border: 1px solid rgba(255, 80, 80, 0.52);
  opacity: 0;
  pointer-events: none;
}

.umm16 .launch-video-frame--preview:hover .launch-play,
.umm16 .launch-video-frame--preview:focus-visible .launch-play,
.umm16 .launch-media__ph--video-preview:hover .launch-play {
  animation: ummPlayPulseOnce 520ms cubic-bezier(0.2, 0.82, 0.22, 1) 1 both;
}

.umm16 .launch-video-frame--preview:hover .launch-play::after,
.umm16 .launch-video-frame--preview:focus-visible .launch-play::after,
.umm16 .launch-media__ph--video-preview:hover .launch-play::after {
  animation: ummPlayPulseRingOnce 520ms cubic-bezier(0.2, 0.82, 0.22, 1) 1 both;
}

@keyframes ummPlayPulseOnce {
  0% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 16px 36px rgba(0, 0, 0, 0.52),
      0 0 0 1px rgba(255, 0, 0, 0.24),
      0 0 20px rgba(255, 0, 0, 0.34);
  }
  38% {
    transform: scale(1.08);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      0 20px 40px rgba(0, 0, 0, 0.56),
      0 0 0 1px rgba(255, 0, 0, 0.3),
      0 0 32px rgba(255, 0, 0, 0.46);
  }
  72% {
    transform: scale(0.985);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes ummPlayPulseRingOnce {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  34% {
    opacity: 0.58;
  }
  100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .umm16 .launch-video-frame--preview:hover .launch-play,
  .umm16 .launch-video-frame--preview:focus-visible .launch-play,
  .umm16 .launch-media__ph--video-preview:hover .launch-play,
  .umm16 .launch-video-frame--preview:hover .launch-play::after,
  .umm16 .launch-video-frame--preview:focus-visible .launch-play::after,
  .umm16 .launch-media__ph--video-preview:hover .launch-play::after {
    animation: none;
  }
}

.umm16 .launch-video-title {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  line-height: 1.12;
  color: var(--umm-text-strong);
  text-align: center;
}

.umm16 .launch-main h2.launch-video-title {
  text-align: center;
}

.umm16 .launch-grid {
  display: grid;
  gap: 18px;
}

.umm16 .launch-grid--two {
  grid-template-columns: 1.1fr 0.9fr;
}

.umm16 .launch-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.umm16 .launch-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.umm16 .launch-grid--tiles-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.umm16 .launch-grid--ba {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.umm16 .umm-surface {
  --umm-current-surface-bg: var(--surface-bg);
  --umm-current-surface-gradient: var(--surface-gradient);
  --umm-current-surface-border: var(--surface-border);
  --umm-current-surface-glow: var(--glow-light);
  --umm-current-surface-glow-hover: var(--surface-glow-hover);
  background-color: var(--umm-current-surface-bg);
  background-image: var(--umm-current-surface-gradient);
  border: var(--umm-border-width) solid var(--umm-current-surface-border);
  border-radius: var(--umm-surface-radius);
  box-shadow: var(--umm-current-surface-glow), var(--surface-inner-edge-highlight);
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out, background-image 0.2s ease-out;
}

.umm16 .umm-surface:hover,
.umm16 .umm-surface:focus-visible,
.umm16 .umm-surface:focus-within,
.umm16 .umm-surface:active {
  border-color: var(--surface-hover-border);
  box-shadow: var(--umm-current-surface-glow-hover), var(--surface-inner-edge-highlight);
}

.umm16 .umm-surface--hero-media {
  --umm-current-surface-gradient: var(--surface-gradient-hero);
  --umm-current-surface-border: rgba(142, 194, 255, 0.44);
  --umm-current-surface-glow:
    0 0 0 1px rgba(122, 174, 255, 0.38),
    0 0 10px rgba(88, 140, 255, 0.17),
    0 14px 29px rgba(0, 0, 0, 0.68);
  --umm-current-surface-glow-hover:
    0 0 0 1px rgba(122, 174, 255, 0.4),
    0 0 10px rgba(88, 140, 255, 0.18),
    0 14px 29px rgba(0, 0, 0, 0.7);
}

.umm16 .umm-surface--pricing {
  --umm-current-surface-gradient: var(--surface-gradient-pricing);
  --umm-current-surface-border: rgba(112, 164, 255, 0.34);
  --umm-current-surface-glow: var(--glow-medium);
  --umm-current-surface-glow-hover: var(--glow-medium);
}

.umm16 .umm-surface--faq {
  --umm-current-surface-gradient: var(--surface-gradient-faq);
  --umm-current-surface-border: rgba(88, 136, 226, 0.19);
  --umm-current-surface-glow:
    0 0 0 1px rgba(94, 144, 236, 0.075),
    0 5px 11px rgba(0, 0, 0, 0.44);
  --umm-current-surface-glow-hover: var(--faq-row-glow-active);
}

.umm16 .umm-surface--cta {
  --umm-current-surface-bg: var(--surface-bg-cta);
  --umm-current-surface-gradient: var(--surface-gradient-cta);
  --umm-current-surface-border: rgba(128, 180, 255, 0.39);
  --umm-current-surface-glow:
    0 0 0 1px rgba(122, 174, 255, 0.33),
    0 18px 29px rgba(0, 0, 0, 0.82);
  --umm-current-surface-glow-hover:
    0 0 0 1px rgba(122, 174, 255, 0.36),
    0 20px 29px rgba(0, 0, 0, 0.84);
}

.umm16 .launch-card {
  padding: 20px;
}

.umm16 .launch-main--resources {
  --launch-resource-card-pad: clamp(24px, 2.1vw, 28px);
  --launch-resource-grid-gap: clamp(22px, 2.6vw, 28px);
  padding-bottom: clamp(18px, 2.4vw, 30px);
}

.umm16 .launch-section--resources-hero {
  padding-top: calc(var(--padY) * 0.7);
  padding-bottom: calc(var(--padY) * 0.54);
}

.umm16 .launch-section--resources-hero h1 {
  max-width: 760px;
}

.umm16 .launch-resource-intro {
  max-width: 620px;
  line-height: 1.72;
}

.umm16 .launch-section--resources-cards {
  position: relative;
  padding-top: calc(var(--padY) * 0.64);
}

.umm16 .launch-section--resources-cards::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--padX);
  right: var(--padX);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(102, 160, 252, 0),
    rgba(122, 178, 255, 0.48) 50%,
    rgba(102, 160, 252, 0)
  );
  pointer-events: none;
}

.umm16 .launch-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--launch-resource-grid-gap);
  align-items: stretch;
  margin-top: clamp(12px, 1.6vw, 20px);
}

.umm16 .launch-resource-grid--compact {
  margin-top: 14px;
}

.umm16 .launch-resource-card {
  min-height: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: var(--launch-resource-card-pad);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-image 0.2s ease;
  transform: none;
}

.umm16 .launch-resource-card:hover,
.umm16 .launch-resource-card:focus-visible,
.umm16 .launch-resource-card:focus-within {
  border-color: rgba(144, 198, 255, 0.56);
  box-shadow:
    0 0 0 1px rgba(132, 190, 255, 0.28),
    0 16px 30px rgba(0, 0, 0, 0.68);
  outline: none;
}

.umm16 .launch-resource-card:focus-visible {
  box-shadow:
    0 0 0 1px rgba(132, 190, 255, 0.3),
    0 0 0 3px rgba(164, 209, 255, 0.18),
    0 16px 30px rgba(0, 0, 0, 0.68);
}

.umm16 .launch-resource-card--full {
  grid-column: 1 / -1;
}

.umm16 .launch-resource-card h3 {
  margin: 0;
  font-size: clamp(1.24rem, 1.3vw, 1.34rem);
  letter-spacing: -0.012em;
}

.umm16 .launch-resource-card p {
  margin: 0;
  color: rgba(222, 233, 248, 0.86);
  line-height: 1.68;
  max-width: 34ch;
}

.umm16 .launch-resource-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 36px;
  height: 36px;
  min-width: 130px;
  width: fit-content;
  padding: 0 17px;
  border-radius: 10px;
  border: 1px solid rgba(114, 169, 255, 0.48);
  color: rgba(234, 244, 255, 0.98);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-weight: 680;
  background: linear-gradient(180deg, rgba(38, 76, 148, 0.96), rgba(29, 60, 118, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(188, 215, 255, 0.16),
    0 6px 12px rgba(7, 15, 33, 0.4);
  transform: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.umm16 .launch-resource-card__cta::after {
  content: '\2192';
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: width 0.2s ease, opacity 0.2s ease;
}

.umm16 .launch-resource-card__cta:hover,
.umm16 .launch-resource-card__cta:focus-visible {
  border-color: rgba(148, 199, 255, 0.66);
  background: linear-gradient(180deg, rgba(58, 100, 180, 0.98), rgba(44, 82, 152, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(211, 232, 255, 0.18),
    0 0 0 1px rgba(126, 184, 255, 0.3),
    0 0 14px rgba(82, 152, 255, 0.26),
    0 8px 16px rgba(6, 14, 30, 0.45);
  outline: none;
}

.umm16 .launch-resource-card:hover .launch-resource-card__cta::after,
.umm16 .launch-resource-card:focus-visible .launch-resource-card__cta::after,
.umm16 .launch-resource-card:focus-within .launch-resource-card__cta::after {
  width: 0.8em;
  opacity: 1;
}

.umm16 .launch-resource-card--full p {
  max-width: 46ch;
}

.umm16 .launch-resource-inline-actions {
  margin-top: auto;
}

.umm16 .launch-resource-card--single {
  max-width: 620px;
}

.umm16 .launch-resource-quick-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(103, 160, 252, 0.24);
  background:
    linear-gradient(180deg, rgba(12, 19, 32, 0.8), rgba(9, 15, 26, 0.86)),
    radial-gradient(110% 170% at 14% -86%, rgba(89, 145, 245, 0.2), rgba(89, 145, 245, 0));
}

.umm16 .launch-resource-quick-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(198, 215, 238, 0.82);
  max-width: 620px;
}

.umm16 .launch-section--resources-quick {
  padding-top: calc(var(--padY) * 0.56);
  padding-bottom: clamp(20px, 3vw, 36px);
}

.umm16 .launch-resource-quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 7px;
  border: 1px solid rgba(114, 170, 255, 0.22);
  background: rgba(14, 22, 36, 0.58);
  color: rgba(205, 223, 247, 0.9);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 620;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.umm16 .launch-resource-quick-links a:hover,
.umm16 .launch-resource-quick-links a:focus-visible {
  border-color: rgba(142, 194, 255, 0.44);
  background: rgba(24, 36, 60, 0.8);
  color: rgba(238, 246, 255, 0.98);
  outline: none;
}

.umm16 .launch-main--resource-system {
  --launch-resource-layout-card-pad: clamp(24px, 2.2vw, 30px);
  --launch-resource-layout-grid-gap: clamp(20px, 2.4vw, 28px);
  --launch-resource-layout-column-max: 1040px;
  --launch-resource-layout-column-pad: 24px;
  --launch-resource-layout-meta-gap: clamp(10px, 1.2vw, 14px);
  --launch-resource-layout-gap-hero-primary: clamp(82px, 9vw, 98px);
  --launch-resource-layout-gap-primary-grid: clamp(64px, 7vw, 72px);
  --launch-resource-layout-gap-grid-detail: clamp(64px, 7vw, 72px);
  --launch-resource-layout-detail-line:
    linear-gradient(90deg, rgba(102, 160, 252, 0), rgba(122, 178, 255, 0.48) 50%, rgba(102, 160, 252, 0));
  --launch-download-card-pad: var(--launch-resource-layout-card-pad);
  --launch-download-grid-gap: var(--launch-resource-layout-grid-gap);
  --launch-download-gap-details-install: var(--launch-resource-layout-grid-gap);
  padding-bottom: clamp(20px, 3vw, 36px);
}

.umm16 .launch-resource-layout-column {
  max-width: var(--launch-resource-layout-column-max);
  margin: 0 auto;
  padding: 0 var(--launch-resource-layout-column-pad);
  box-sizing: border-box;
}

.umm16 .launch-resource-layout-column--hero {
  text-align: left;
}

.umm16 .launch-section--resource-layout-hero {
  padding-top: calc(var(--padY) * 0.62);
  padding-bottom: var(--launch-resource-layout-gap-hero-primary);
}

.umm16 .launch-section--resource-layout-hero .launch-resource-layout-hero-inner {
  max-width: var(--launch-resource-layout-column-max);
  margin: 0 auto;
  text-align: left;
}

.umm16 .launch-section--resource-layout-hero .launch-kicker {
  margin-bottom: 8px;
}

.umm16 .launch-section--resource-layout-hero h1 {
  max-width: none;
  margin-bottom: 14px;
}

.umm16 .launch-section--resource-layout-hero .launch-resource-intro {
  max-width: min(74%, 780px);
  margin: 0;
  color: rgba(218, 231, 248, 0.9);
}

.umm16 .launch-section--support-cta {
  padding-top: 0;
  padding-bottom: clamp(20px, 3vw, 36px);
}

.umm16 .launch-support-cta-stack {
  width: 100%;
  max-width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  gap: clamp(18px, 2.2vw, 24px);
}

.umm16 .launch-support-cta-item {
  width: 100%;
  padding: clamp(32px, 3.4vw, 40px);
}

.umm16 .launch-support-cta-item--secondary {
  --umm-current-surface-border: rgba(96, 148, 229, 0.2);
  --umm-current-surface-gradient:
    linear-gradient(145deg, rgba(20, 31, 50, 0.72) 0%, rgba(10, 16, 28, 0.95) 58%, rgba(7, 11, 20, 0.99) 100%);
}

.umm16 .launch-support-card-inner {
  width: min(100%, 560px);
  margin: 0 auto;
  display: grid;
  gap: 10px;
  text-align: left;
}

.umm16 .launch-support-cta-title {
  margin: 0;
  font-size: clamp(1.18rem, 1.5vw, 1.36rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: rgba(232, 243, 255, 0.96);
  font-weight: 620;
}

.umm16 .launch-support-cta-helper {
  margin: 0;
  color: rgba(170, 197, 231, 0.74);
  font-size: 13px;
  line-height: 1.48;
  text-align: left;
}

.umm16 .launch-support-cta-checklist {
  width: 100%;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  text-align: left;
}

.umm16 .launch-support-cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
  color: rgba(188, 211, 241, 0.84);
  font-size: 14px;
  line-height: 1.52;
}

.umm16 .launch-support-cta-checklist li::before {
  content: '\2713';
  flex: 0 0 auto;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1;
  color: rgba(150, 194, 244, 0.76);
  font-weight: 640;
}

.umm16 .launch-support-cta-button.launch-btn {
  justify-self: start;
  margin-top: clamp(12px, 1.6vw, 16px);
  width: min(100%, 290px);
  min-width: min(100%, 260px);
  min-height: 46px;
  padding: 0 22px;
}

.umm16 .launch-section--resource-layout-primary {
  padding-top: 0;
  padding-bottom: 0;
}

.umm16 .launch-resource-layout-primary-card {
  max-width: none;
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 18px;
  text-align: left;
}

.umm16 .launch-resource-layout-primary-eyebrow {
  margin: 0;
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(132, 185, 255, 0.38);
  background: rgba(12, 22, 38, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 620;
  color: rgba(196, 218, 246, 0.86);
}

.umm16 .launch-resource-layout-primary-card h2 {
  margin: 0;
  font-size: clamp(1.56rem, 2.1vw, 2.08rem);
  line-height: 1.1;
  letter-spacing: -0.016em;
}

.umm16 .launch-resource-layout-primary-card p {
  margin: 0;
  max-width: none;
  color: rgba(222, 233, 248, 0.88);
}

.umm16 .launch-resource-layout-meta {
  margin: 0;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--launch-resource-layout-meta-gap);
  align-items: stretch;
}

.umm16 .launch-resource-layout-meta li {
  margin: 0;
  max-width: none;
}

.umm16 .launch-resource-layout-meta-item {
  display: grid;
  gap: 5px;
  justify-items: start;
  align-content: center;
  min-height: 88px;
  padding: 14px 16px;
  border-radius: 13px;
  border: 1px solid rgba(116, 171, 255, 0.24);
  background: linear-gradient(180deg, rgba(12, 20, 34, 0.86), rgba(9, 15, 27, 0.88));
}

.umm16 .launch-resource-layout-meta-key {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(178, 204, 234, 0.78);
}

.umm16 .launch-resource-layout-meta-value {
  font-size: 16px;
  line-height: 1.34;
  letter-spacing: 0;
  color: rgba(242, 249, 255, 0.95);
  font-weight: 600;
}

.umm16 .launch-resource-layout-primary-actions {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.umm16 .launch-resource-layout-primary-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.umm16 .launch-resource-layout-primary-action-row .launch-btn {
  min-height: 42px;
}

.umm16 .launch-resource-layout-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  color: rgba(178, 201, 232, 0.78);
}

.umm16 .launch-resource-layout-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(219, 235, 254, 0.94);
  text-decoration: none;
  border-bottom: 1px solid rgba(143, 196, 255, 0.5);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 580;
  width: max-content;
  max-width: 100%;
}

.umm16 .launch-resource-layout-link:hover,
.umm16 .launch-resource-layout-link:focus-visible {
  color: rgba(241, 248, 255, 0.99);
  border-bottom-color: rgba(176, 219, 255, 0.82);
  outline: none;
}

.umm16 button.launch-resource-layout-link {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.umm16 .launch-resource-layout-link--secondary {
  font-size: 12px;
  font-weight: 520;
  color: rgba(188, 210, 236, 0.8);
  border-bottom-color: rgba(143, 196, 255, 0.32);
}

.umm16 .launch-changelog-heading {
  margin: 0 0 clamp(18px, 2.4vw, 24px);
  text-align: left;
}

.umm16 .launch-changelog-stack {
  max-width: min(100%, 940px);
  margin: 0;
}

.umm16 .launch-changelog-item {
  padding: clamp(24px, 2.8vw, 32px);
}

.umm16 .launch-changelog-item .launch-support-card-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 12px;
}

.umm16 .launch-changelog-label {
  margin: 0;
  color: rgba(150, 194, 244, 0.9);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 650;
}

.umm16 .launch-changelog-description {
  margin: 0;
  color: rgba(216, 231, 249, 0.9);
  font-size: 15px;
  line-height: 1.65;
  max-width: 72ch;
}

.umm16 .launch-changelog-sections {
  margin-top: 4px;
  display: grid;
  gap: 16px;
}

.umm16 .launch-changelog-section {
  padding: 0;
  display: grid;
  gap: 8px;
}

.umm16 .launch-changelog-section-title {
  margin: 0;
  color: rgba(236, 244, 255, 0.97);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 620;
}

.umm16 .launch-changelog-section-copy {
  margin: 0;
  color: rgba(196, 217, 244, 0.84);
  font-size: 15px;
  line-height: 1.65;
  max-width: 72ch;
}

.umm16 .launch-changelog-subsection {
  display: grid;
  gap: 3px;
  padding-left: 12px;
  border-left: 1px solid rgba(116, 171, 255, 0.24);
}

.umm16 .launch-changelog-subsection-title {
  margin: 0;
  color: rgba(224, 237, 255, 0.95);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 620;
}

.umm16 .launch-changelog-subsection-copy {
  margin: 0;
  color: rgba(191, 213, 241, 0.82);
  font-size: 14px;
  line-height: 1.6;
  max-width: 68ch;
}

.umm16 .launch-changelog-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  max-width: 72ch;
}

.umm16 .launch-changelog-list li {
  position: relative;
  margin: 0;
  padding-left: 16px;
  color: rgba(196, 217, 244, 0.84);
  font-size: 14px;
  line-height: 1.58;
}

.umm16 .launch-changelog-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(150, 194, 244, 0.82);
}

.umm16 .launch-changelog-item .launch-support-cta-helper {
  margin-top: 2px;
  color: rgba(196, 217, 244, 0.84);
  font-size: 15px;
  line-height: 1.55;
}

.umm16 .launch-main p.launch-changelog-note {
  margin: clamp(28px, 3.4vw, 40px) auto 0;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
}

.umm16 .launch-section--resource-layout-grid {
  padding-top: var(--launch-resource-layout-gap-primary-grid);
  padding-bottom: 0;
}

.umm16 .launch-resource-layout-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--launch-resource-layout-grid-gap);
  align-items: stretch;
}

.umm16 .launch-resource-layout-card {
  min-height: 100%;
  padding: var(--launch-resource-layout-card-pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.umm16 .launch-resource-layout-card h3 {
  margin: 0;
}

.umm16 .launch-resource-layout-card p {
  margin: 0;
  max-width: none;
  color: rgba(222, 233, 248, 0.86);
}

.umm16 .launch-resource-layout-card .launch-download-action {
  margin-top: auto;
}

.umm16 .launch-resource-layout-card .launch-resource-layout-link {
  margin-top: auto;
}

.umm16 .launch-resource-layout-card--full {
  grid-column: 1 / -1;
  --umm-current-surface-border: rgba(92, 143, 221, 0.23);
  --umm-current-surface-gradient:
    linear-gradient(145deg, rgba(28, 40, 64, 0.8) 0%, rgba(12, 19, 32, 0.92) 56%, rgba(9, 14, 24, 0.97) 100%);
}

.umm16 .launch-section--resource-layout-detail {
  position: relative;
  padding-top: 0;
  padding-bottom: clamp(20px, 3vw, 36px);
}

.umm16 #tutorial-library {
  --surface-border: rgba(68, 118, 208, 0.34);
  --surface-hover-border: rgba(84, 136, 220, 0.4);
  --glow-light:
    0 0 0 1px rgba(68, 118, 208, 0.16),
    0 10px 21px rgba(0, 0, 0, 0.62);
  --surface-glow-hover:
    0 0 0 1px rgba(84, 136, 220, 0.22),
    0 12px 24px rgba(0, 0, 0, 0.62);
}

.umm16 .launch-section--resource-layout-detail .launch-resource-layout-column::before {
  content: '';
  display: block;
  height: 1px;
  margin-bottom: var(--launch-resource-layout-gap-grid-detail);
  background: var(--launch-resource-layout-detail-line);
  pointer-events: none;
}

.umm16 .launch-resource-layout-detail-card {
  padding: clamp(18px, 2.2vw, 24px);
}

.umm16 .launch-resource-layout-detail-card h2,
.umm16 .launch-resource-layout-detail-card h3 {
  margin-top: 0;
}

.umm16 .launch-resource-layout-detail-card p,
.umm16 .launch-resource-layout-detail-card li {
  max-width: none;
}

.umm16 .launch-resource-layout-stack {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.umm16 .launch-resource-layout-stack li {
  margin: 0;
  line-height: 1.72;
  color: rgba(224, 236, 252, 0.9);
}

.umm16 .launch-resource-layout-toc {
  margin: 0 0 clamp(24px, 3vw, 30px);
}

.umm16 .launch-resource-layout-doc-content {
  display: grid;
  gap: clamp(32px, 4vw, 40px);
}

.umm16 .launch-resource-layout-doc-content .doc-section {
  margin: 0;
}

.umm16 .launch-main--downloads {
  --launch-download-card-pad: clamp(24px, 2.2vw, 30px);
  --launch-download-grid-gap: clamp(20px, 2.4vw, 28px);
  --launch-download-column-max: 1040px;
  --launch-download-column-pad: 24px;
  --launch-download-meta-gap: clamp(10px, 1.2vw, 14px);
  --launch-download-gap-hero-module: clamp(82px, 9vw, 98px);
  --launch-download-gap-module-details: clamp(64px, 7vw, 72px);
  --launch-download-gap-details-install: clamp(64px, 7vw, 72px);
  padding-bottom: clamp(20px, 3vw, 36px);
}

.umm16 .launch-downloads-column {
  max-width: var(--launch-download-column-max);
  margin: 0 auto;
  padding: 0 var(--launch-download-column-pad);
  box-sizing: border-box;
}

.umm16 .launch-section--downloads-hero {
  padding-top: calc(var(--padY) * 0.62);
  padding-bottom: var(--launch-download-gap-hero-module);
}

.umm16 .launch-downloads-column--hero {
  text-align: left;
}

.umm16 .launch-section--downloads-hero .hero-inner {
  max-width: var(--launch-download-column-max);
  margin: 0 auto;
  text-align: left;
}

.umm16 .launch-section--downloads-hero .launch-kicker {
  margin-bottom: 8px;
}

.umm16 .launch-section--downloads-hero h1 {
  max-width: none;
  margin-bottom: 14px;
}

.umm16 .launch-section--downloads-hero .launch-resource-intro {
  max-width: min(74%, 780px);
  margin: 0;
  color: rgba(218, 231, 248, 0.9);
}

.umm16 .launch-section--downloads-release {
  padding-top: 0;
  padding-bottom: 0;
}

.umm16 .launch-download-release-stack {
  display: grid;
  gap: 0;
}

.umm16 .launch-download-release {
  max-width: none;
  margin: 0;
  text-align: left;
  border-bottom: 0;
  border-radius: var(--umm-surface-radius, 18px) var(--umm-surface-radius, 18px) 0 0;
  padding: clamp(24px, 3vw, 36px);
}

.umm16 .launch-download-release__label {
  margin: 0;
  width: max-content;
  max-width: 100%;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(185, 207, 235, 0.8);
}

.umm16 .launch-download-release__meta {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--launch-download-meta-gap);
  align-items: stretch;
}

.umm16 .launch-download-release__meta-item {
  display: grid;
  gap: 5px;
  justify-items: start;
  align-content: center;
  min-height: 88px;
  padding: 14px 16px;
  border-radius: 13px;
  border: 1px solid rgba(116, 171, 255, 0.24);
  background: linear-gradient(180deg, rgba(12, 20, 34, 0.86), rgba(9, 15, 27, 0.88));
}

.umm16 .launch-download-release__meta-key {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(178, 204, 234, 0.78);
}

.umm16 .launch-download-release__meta-value {
  font-size: 16px;
  line-height: 1.34;
  letter-spacing: 0;
  color: rgba(242, 249, 255, 0.95);
  font-weight: 600;
  max-width: none;
}

.umm16 .launch-download-release__meta-item--version .launch-download-release__meta-value {
  font-size: 28px;
  font-weight: 650;
  line-height: 1.08;
  color: rgba(247, 252, 255, 0.99);
}

.umm16 .launch-download-release__meta-item--date .launch-download-release__meta-value {
  font-size: 18px;
  line-height: 1.24;
}

.umm16 .launch-download-release__meta-item--compatibility .launch-download-release__meta-value {
  font-size: 15px;
  line-height: 1.42;
  color: rgba(222, 236, 255, 0.92);
}

.umm16 .launch-download-release__actions {
  margin-top: 24px;
  display: grid;
  width: 100%;
  gap: 7px;
}

.umm16 .download-cta {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: grid;
  gap: 0;
  justify-items: center;
  text-align: center;
}

.umm16 .launch-download-release__button {
  min-height: 46px;
  min-width: min(100%, 260px);
  padding: 0 22px;
}

.umm16 .launch-download-release__filename {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(196, 216, 242, 0.86);
}

.umm16 .launch-download-release__filetype {
  margin: 12px 0 0;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.12em;
  font-variant-caps: all-small-caps;
  text-transform: uppercase;
  color: rgba(163, 187, 220, 0.7);
}

.umm16 .launch-download-release__note {
  margin: 16px 0 0;
  font-size: 10px;
  line-height: 1.4;
  color: rgba(156, 181, 214, 0.7);
}

.umm16 .launch-download-release__checksum {
  width: 100%;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(77, 129, 205, 0.3);
  background:
    linear-gradient(180deg, rgba(12, 28, 56, 0.8), rgba(5, 14, 31, 0.92));
  box-shadow: inset 0 1px 0 rgba(122, 172, 255, 0.08);
}

.umm16 .launch-download-release__checksum-label {
  margin: 0;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.12em;
  font-variant-caps: all-small-caps;
  text-transform: uppercase;
  color: rgba(163, 187, 220, 0.74);
}

.umm16 .launch-download-release__checksum-value {
  margin: 8px 0 0;
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-family: "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(232, 240, 255, 0.9);
}

.umm16 .download-cta .launch-download-release__button {
  margin-top: 24px;
}

.umm16 .launch-download-release__help-link {
  margin-top: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: center;
  text-align: center;
  font-size: 13px;
  font-weight: 580;
  line-height: 1.32;
  color: rgba(205, 224, 249, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(133, 187, 255, 0.46);
}

.umm16 .launch-download-release__help-link:hover,
.umm16 .launch-download-release__help-link:focus-visible {
  color: rgba(239, 247, 255, 0.98);
  border-bottom-color: rgba(169, 213, 255, 0.8);
  outline: none;
}

.umm16 .launch-download-next {
  margin: 0;
  width: 100%;
  padding: 12px 14px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border-radius: 0 0 var(--umm-surface-radius, 18px) var(--umm-surface-radius, 18px);
  border: 1px solid rgba(111, 168, 255, 0.22);
  border-top-color: rgba(126, 182, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(12, 20, 34, 0.74), rgba(9, 15, 27, 0.82)),
    radial-gradient(112% 180% at 12% -84%, rgba(95, 150, 246, 0.14), rgba(95, 150, 246, 0));
}

.umm16 .launch-download-next li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  margin: 0;
  max-width: none;
  text-align: center;
  color: rgba(210, 228, 252, 0.9);
  font-size: 13px;
  line-height: 1.35;
}

.umm16 .launch-download-next li span:first-child {
  color: rgba(170, 198, 235, 0.72);
  font-size: 12px;
  font-weight: 650;
}

.umm16 .launch-section--downloads-details {
  position: relative;
  padding-top: 0;
  padding-bottom: clamp(20px, 3vw, 36px);
}

.umm16 .launch-section--downloads-details::before {
  display: none;
}

.umm16 .launch-section--downloads-details .launch-downloads-column::before {
  content: '';
  display: block;
  height: 1px;
  margin-bottom: var(--launch-download-gap-module-details);
  background: linear-gradient(
    90deg,
    rgba(102, 160, 252, 0),
    rgba(122, 178, 255, 0.48) 50%,
    rgba(102, 160, 252, 0)
  );
  pointer-events: none;
}

.umm16 .launch-download-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--launch-download-grid-gap);
  row-gap: var(--launch-download-gap-details-install);
  align-items: stretch;
}

.umm16 .launch-download-card {
  min-height: 100%;
  padding: var(--launch-download-card-pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.umm16 .launch-download-card--full {
  grid-column: 1 / -1;
  padding-top: clamp(14px, 1.8vw, 20px);
  padding-bottom: clamp(14px, 1.8vw, 20px);
  --umm-current-surface-border: rgba(92, 143, 221, 0.23);
  --umm-current-surface-gradient:
    linear-gradient(145deg, rgba(28, 40, 64, 0.8) 0%, rgba(12, 19, 32, 0.92) 56%, rgba(9, 14, 24, 0.97) 100%);
}

.umm16 .launch-download-card--calm {
  --umm-current-surface-border: rgba(98, 152, 236, 0.24);
  --umm-current-surface-gradient:
    linear-gradient(145deg, rgba(24, 36, 58, 0.74) 0%, rgba(10, 16, 28, 0.94) 58%, rgba(8, 12, 20, 0.99) 100%);
}

.umm16 .launch-download-card h3 {
  margin: 0;
}

.umm16 .launch-download-card p {
  margin: 0;
  max-width: none;
  color: rgba(222, 233, 248, 0.86);
}

.umm16 .launch-download-list,
.umm16 .launch-download-steps {
  margin: 0;
  padding-left: 24px;
  display: grid;
  gap: 11px;
}

.umm16 .launch-download-list li,
.umm16 .launch-download-steps li {
  max-width: none;
  margin: 0;
  line-height: 1.74;
  color: rgba(224, 236, 252, 0.9);
}

.umm16 .launch-download-steps li::marker {
  color: rgba(173, 203, 240, 0.86);
  font-weight: 620;
}

.umm16 .launch-download-steps strong {
  font-weight: 620;
  color: rgba(238, 247, 255, 0.96);
}

.umm16 .launch-download-upgrade-note {
  width: 100%;
  margin: 0 0 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(129, 181, 255, 0.2);
  display: grid;
  gap: 7px;
}

.umm16 .launch-download-upgrade-note__eyebrow {
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(173, 198, 230, 0.74);
}

.umm16 .launch-download-upgrade-note__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(205, 223, 246, 0.9);
}

.umm16 .launch-download-upgrade-steps {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.umm16 .launch-download-upgrade-steps li {
  margin: 0;
  max-width: none;
  font-size: 15px;
  line-height: 1.62;
  color: rgba(194, 214, 240, 0.86);
}

.umm16 .launch-download-upgrade-steps li::marker {
  color: rgba(165, 194, 228, 0.7);
  font-weight: 600;
}

.umm16 .launch-download-inline-link {
  color: rgba(226, 240, 255, 0.96);
  text-decoration: none;
  border-bottom: 1px solid rgba(143, 196, 255, 0.66);
}

.umm16 .launch-download-inline-link:hover,
.umm16 .launch-download-inline-link:focus-visible {
  color: rgba(242, 249, 255, 0.99);
  border-bottom-color: rgba(176, 219, 255, 0.92);
  outline: none;
}

.umm16 .launch-download-resources {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.umm16 .launch-download-resources li {
  display: flex;
}

.umm16 .launch-download-action {
  margin-top: 0;
  width: 100%;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(116, 173, 255, 0.42);
  background: linear-gradient(180deg, rgba(30, 60, 118, 0.96), rgba(22, 46, 92, 0.98));
  color: rgba(236, 246, 255, 0.98);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 660;
  box-shadow:
    inset 0 1px 0 rgba(192, 218, 255, 0.14),
    0 6px 12px rgba(6, 14, 30, 0.4);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.umm16 .launch-download-action:hover,
.umm16 .launch-download-action:focus-visible {
  border-color: rgba(147, 201, 255, 0.7);
  background: linear-gradient(180deg, rgba(56, 97, 175, 0.98), rgba(43, 78, 143, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(214, 234, 255, 0.18),
    0 0 0 1px rgba(123, 186, 255, 0.32),
    0 0 14px rgba(82, 152, 255, 0.26),
    0 8px 16px rgba(6, 14, 30, 0.45);
  color: rgba(242, 249, 255, 0.99);
  outline: none;
}

.umm16 button.launch-download-action {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 660;
  cursor: pointer;
}

@media (max-width: 768px) {
  .umm16 .launch-download-release__help-link {
    display: inline-flex;
    font-size: 15px;
  }
}

.umm16 .version-history-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.umm16 .version-history-modal[data-open='true'] {
  display: flex;
}

.umm16 .version-history-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.72);
}

.umm16 .version-history-card {
  position: relative;
  z-index: 1;
  width: min(640px, 92vw);
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(110, 160, 220, 0.45);
  background:
    radial-gradient(130% 140% at 30% 10%, rgba(75, 132, 210, 0.35), rgba(10, 16, 28, 0.92)),
    linear-gradient(160deg, rgba(16, 24, 40, 0.92), rgba(6, 10, 18, 0.98));
  box-shadow: 0 24px 60px rgba(2, 5, 12, 0.6);
  text-align: center;
  color: rgba(240, 246, 255, 0.95);
}

.umm16 .version-history-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(150, 195, 245, 0.6);
  background: rgba(24, 42, 66, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.umm16 .version-history-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.umm16 .version-history-list p {
  margin: 0;
  max-width: none;
  font-size: 1.02rem;
  font-weight: 600;
  color: rgba(240, 246, 255, 0.92);
}

.umm16 .version-history-hint {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(240, 246, 255, 0.75);
}

.umm16 .launch-card--whats-new {
  --umm-current-surface-bg: rgba(9, 13, 23, 0.96);
  --umm-current-surface-gradient:
    linear-gradient(145deg, rgba(32, 47, 78, 0.9) 0%, rgba(13, 20, 34, 0.97) 42%, rgba(6, 10, 18, 0.998) 100%);
  padding: 18px;
}

.umm16 .launch-card--whats-new h2 {
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 660;
}

.umm16 .launch-whats-new-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.umm16 .launch-whats-new-list li {
  color: var(--umm-text-body);
}

.umm16 .launch-main .launch-whats-new-signature {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(184, 195, 214, 0.86);
}

.umm16 .launch-section--problem-solution {
  padding-top: calc(var(--padY) * 0.9);
  padding-bottom: calc(var(--padY) * 0.88);
}

.umm16 .launch-problem-solution {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(28px, 4vw, 66px);
  align-items: start;
}

.umm16 .launch-problem {
  max-width: 35rem;
  border-left: 1px solid rgba(108, 164, 255, 0.58);
  padding-left: 18px;
}

.umm16 .launch-problem .launch-kicker {
  margin-bottom: 16px;
}

.umm16 .launch-problem h2 {
  margin-bottom: 18px;
}

.umm16 .launch-problem-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.umm16 .launch-problem-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(236, 242, 251, 0.9);
}

.umm16 .launch-problem-list li::before {
  content: '';
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(110, 168, 255, 0.95);
  transform: translateY(-50%);
}

.umm16 #solution {
  scroll-margin-top: var(--umm-anchor-offset);
}

.umm16 .launch-solution-card {
  --umm-current-surface-bg: rgba(7, 12, 23, 0.97);
  --umm-current-surface-gradient:
    linear-gradient(112deg, rgba(42, 60, 98, 0.82) 0%, rgba(14, 21, 37, 0.96) 44%, rgba(4, 9, 17, 0.998) 100%);
  --umm-current-surface-border: rgba(90, 149, 247, 0.46);
  --umm-current-surface-glow:
    0 0 0 1px rgba(95, 152, 246, 0.17),
    0 14px 27px rgba(0, 0, 0, 0.62);
  --umm-current-surface-glow-hover:
    0 0 0 1px rgba(103, 159, 250, 0.2),
    0 16px 30px rgba(0, 0, 0, 0.64);
  padding: clamp(24px, 2.6vw, 30px);
  min-height: 284px;
}

.umm16 .launch-solution-card h2 {
  margin-bottom: 14px;
}

.umm16 .launch-main .launch-solution-card p {
  margin-bottom: 20px;
  max-width: 44ch;
}

.umm16 .launch-solution-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  max-width: 44ch;
}

.umm16 .launch-solution-list li {
  margin: 0;
  padding-left: 18px;
  position: relative;
  color: rgba(214, 227, 244, 0.9);
}

.umm16 .launch-solution-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 4px;
  border-left: 2px solid rgba(122, 184, 255, 0.92);
  border-bottom: 2px solid rgba(122, 184, 255, 0.92);
  transform: rotate(-45deg);
}

.umm16 .launch-tool-grid {
  column-gap: 14px;
  row-gap: 12px;
}

.umm16 .launch-tool-tile {
  --umm-surface-radius: 16px;
  --umm-current-surface-bg: rgba(11, 16, 28, 0.95);
  --umm-current-surface-gradient:
    linear-gradient(106deg, rgba(50, 70, 108, 0.83) 0%, rgba(18, 28, 47, 0.95) 46%, rgba(5, 10, 18, 0.995) 100%);
  --umm-current-surface-border: rgba(92, 150, 248, 0.47);
  --umm-current-surface-glow:
    0 0 0 1px rgba(95, 152, 246, 0.18),
    0 9px 20px rgba(0, 0, 0, 0.57);
  --umm-current-surface-glow-hover:
    0 0 0 1px rgba(103, 160, 252, 0.21),
    0 10px 22px rgba(0, 0, 0, 0.59);
  padding: 20px 30px 22px;
}

.umm16 .launch-tool-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: var(--umm-type-card-title-size);
  line-height: var(--umm-type-card-title-line);
  letter-spacing: var(--umm-type-card-title-track);
  font-weight: var(--umm-type-card-title-weight);
  color: rgba(244, 249, 255, 0.97);
}

.umm16 .launch-tool-tile p {
  margin: 0;
  color: rgba(205, 219, 238, 0.9);
  max-width: 34ch;
}

.umm16 .launch-materializer-shell {
  --umm-surface-radius: 24px;
  --umm-current-surface-bg: rgba(5, 10, 19, 0.98);
  --umm-current-surface-gradient:
    linear-gradient(118deg, rgba(8, 15, 28, 0.96) 0%, rgba(5, 11, 21, 0.992) 64%, rgba(3, 8, 16, 1) 100%);
  --umm-current-surface-border: rgba(66, 118, 210, 0);
  --umm-current-surface-glow:
    0 14px 29px rgba(0, 0, 0, 0.62);
  --umm-current-surface-glow-hover:
    0 16px 31px rgba(0, 0, 0, 0.66);
  padding: clamp(26px, 3.2vw, 40px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.umm16 .launch-materializer-shell:hover,
.umm16 .launch-materializer-shell:focus-visible,
.umm16 .launch-materializer-shell:focus-within,
.umm16 .launch-materializer-shell:active {
  border-color: rgba(66, 118, 210, 0);
  box-shadow: var(--umm-current-surface-glow);
}

.umm16 .launch-materializer-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(48% 56% at 42% 52%, rgba(58, 103, 205, 0.38) 0%, rgba(36, 72, 148, 0.24) 30%, rgba(8, 15, 29, 0) 66%),
    radial-gradient(40% 50% at 72% 30%, rgba(40, 84, 180, 0.21) 0%, rgba(7, 14, 27, 0) 65%),
    linear-gradient(165deg, rgba(4, 9, 18, 0.1) 0%, rgba(3, 7, 14, 0.38) 100%);
  pointer-events: none;
  z-index: 0;
}

.umm16 .launch-materializer-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(126% 116% at 52% 100%, rgba(3, 8, 15, 0) 35%, rgba(3, 8, 15, 0.48) 100%);
  pointer-events: none;
  z-index: 0;
}

.umm16 .launch-materializer-shell > * {
  position: relative;
  z-index: 1;
}

.umm16 .launch-materializer-grid {
  align-items: start;
  gap: 18px;
  grid-template-areas:
    'copy .'
    'steps preview';
}

.umm16 .launch-materializer-copy {
  grid-area: copy;
}

.umm16 .launch-materializer-steps {
  grid-area: steps;
  margin-top: 0;
  display: grid;
  gap: 10px;
}

.umm16 .launch-materializer-step {
  --umm-current-surface-bg: rgba(7, 12, 22, 0.9);
  --umm-current-surface-gradient:
    linear-gradient(108deg, rgba(24, 36, 59, 0.62) 0%, rgba(8, 14, 26, 0.94) 52%, rgba(5, 10, 19, 0.98) 100%);
  --umm-current-surface-border: rgba(72, 118, 201, 0.2);
  --umm-current-surface-glow:
    0 0 0 1px rgba(72, 118, 201, 0.08),
    0 6px 13px rgba(0, 0, 0, 0.42);
  --umm-current-surface-glow-hover:
    0 0 0 1px rgba(72, 118, 201, 0.1),
    0 7px 15px rgba(0, 0, 0, 0.44);
  padding: 14px 16px;
}

.umm16 .launch-materializer-step strong {
  display: block;
  font-size: var(--umm-type-card-title-size);
  line-height: var(--umm-type-card-title-line);
  letter-spacing: var(--umm-type-card-title-track);
  font-weight: var(--umm-type-card-title-weight);
  margin-bottom: 4px;
  color: rgba(244, 249, 255, 0.97);
}

.umm16 .launch-materializer-step p {
  margin: 0;
  color: rgba(186, 199, 219, 0.9);
}

.umm16 #materializer .launch-materializer-grid > div:first-child > p {
  color: rgba(201, 214, 234, 0.9);
}

.umm16 #materializer-preview {
  --umm-current-surface-bg: rgba(8, 14, 25, 0.96);
  --umm-current-surface-gradient:
    linear-gradient(112deg, rgba(52, 74, 114, 0.8) 0%, rgba(17, 28, 46, 0.95) 46%, rgba(4, 9, 17, 0.996) 100%);
  --umm-current-surface-border: rgba(102, 157, 250, 0.5);
  --umm-current-surface-glow:
    0 0 0 1px rgba(102, 157, 250, 0.18),
    0 11px 22px rgba(0, 0, 0, 0.58);
  --umm-current-surface-glow-hover:
    0 0 0 1px rgba(106, 160, 252, 0.2),
    0 12px 23px rgba(0, 0, 0, 0.6);
  margin-top: 0;
}

.umm16 .launch-materializer-preview-card {
  grid-area: preview;
  padding: 0;
  overflow: hidden;
  align-self: center;
}

.umm16 .launch-materializer-preview-media {
  min-height: 0;
}

.umm16 .launch-media__ph--materializer {
  min-height: 0;
}

.umm16 .launch-materializer-preview-media .launch-media__cap {
  border-top: 0;
  margin: 0 0 16px 16px;
  padding: 7px 11px;
  border-radius: 9px;
  border: 1px solid rgba(116, 164, 248, 0.18);
  background: rgba(14, 22, 35, 0.62);
  width: max-content;
  max-width: calc(100% - 32px);
  color: rgba(171, 185, 206, 0.86);
}

.umm16 .launch-cases-intro {
  margin: 0;
}

.umm16 .launch-cases-grid {
  align-items: stretch;
  gap: 16px;
}

.umm16 .launch-case-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.umm16 .launch-case-card h3 {
  margin: 0 0 8px;
  font-size: var(--umm-type-card-title-size);
  line-height: var(--umm-type-card-title-line);
  letter-spacing: var(--umm-type-card-title-track);
  font-weight: var(--umm-type-card-title-weight);
}

.umm16 .launch-case-lead {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(242, 247, 255, 0.93);
}

.umm16 .launch-case-copy {
  margin: 0 0 16px;
  flex: 1 1 auto;
}

.umm16 .launch-case-media {
  margin-top: auto;
  min-height: 0;
}

.umm16 .launch-production-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 24px;
  align-items: start;
}

.umm16 .launch-production-grid--copy-only {
  grid-template-columns: minmax(0, 1fr);
}

.umm16 #production .launch-shell {
  position: relative;
  isolation: isolate;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: calc(var(--padX) + clamp(26px, 3.2vw, 40px));
  padding-right: calc(var(--padX) + clamp(26px, 3.2vw, 40px));
}

.umm16 #production .launch-shell::before {
  content: '';
  position: absolute;
  inset: 0 var(--padX);
  border-radius: 22px;
  border: 1px solid rgba(72, 118, 201, 0.11);
  background:
    radial-gradient(52% 66% at 68% 46%, rgba(46, 88, 182, 0.23) 0%, rgba(9, 16, 30, 0) 72%),
    linear-gradient(160deg, rgba(6, 11, 21, 0.46) 0%, rgba(4, 8, 16, 0.08) 100%);
  pointer-events: none;
  z-index: 0;
}

.umm16 #production .launch-shell > * {
  position: relative;
  z-index: 1;
}

.umm16 .launch-production-copy {
  max-width: 33rem;
  padding-top: 4px;
}

.umm16 .launch-production-copy--proof {
  max-width: 40rem;
}

.umm16 .launch-production-grid--copy-only .launch-production-copy {
  max-width: 42rem;
}

.umm16 .launch-production-copy > p:first-child {
  margin-bottom: 14px;
}

.umm16 .launch-production-grid--proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 16px;
}

.umm16 .launch-production-proof-group {
  min-width: 0;
  padding: 18px 20px 16px;
  border-radius: 18px;
  border: 1px solid rgba(108, 148, 220, 0.18);
  background:
    linear-gradient(180deg, rgba(14, 20, 34, 0.5) 0%, rgba(8, 13, 23, 0.2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(184, 214, 255, 0.075),
    inset 0 0 0 1px rgba(168, 198, 255, 0.025);
}

.umm16 .launch-production-proof-group h3 {
  margin: 0 0 14px;
  font-size: 0.94rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: rgba(231, 239, 251, 0.9);
}

.umm16 .launch-production-proof-stats {
  --launch-production-proof-stat-gap: 18px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--launch-production-proof-stat-gap);
  align-items: start;
}

.umm16 .launch-production-proof-stat {
  min-width: 0;
  position: relative;
}

.umm16 .launch-production-proof-stat + .launch-production-proof-stat::before {
  content: '';
  position: absolute;
  left: calc(var(--launch-production-proof-stat-gap) / -2);
  top: 4px;
  bottom: 6px;
  width: 1px;
  background: rgba(152, 174, 214, 0.08);
}

.umm16 .launch-production-proof-stat dd {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 620;
  color: rgba(248, 251, 255, 0.99);
  white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.umm16 .launch-production-proof-unit {
  opacity: 0.74;
  font-weight: 540;
}

.umm16 .launch-production-proof-stat dt {
  margin: 8px 0 0;
  display: block;
  font-size: 0.77rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(180, 192, 211, 0.78);
}

.umm16 .launch-production-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.umm16 .launch-production-list li {
  margin: 0;
  padding-left: 18px;
  position: relative;
  color: rgba(229, 237, 249, 0.92);
  font-size: 17px;
  line-height: 1.44;
}

.umm16 .launch-production-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 4px;
  border-left: 2px solid rgba(122, 184, 255, 0.92);
  border-bottom: 2px solid rgba(122, 184, 255, 0.92);
  transform: rotate(-45deg);
}

.umm16 .launch-production-used-with {
  margin: 14px 0 0;
}

.umm16 .launch-production-footnote {
  margin: 0;
  padding-top: 0;
  color: rgba(174, 186, 205, 0.56);
}

.umm16 .launch-production-card {
  padding: 0;
  overflow: hidden;
  margin-top: -18px;
}

.umm16 .launch-production-media {
  min-height: 0;
}

.umm16 .launch-tools-note,
.umm16 .launch-cases-note {
  display: none;
}

.umm16 .launch-card--consistency {
  --umm-current-surface-glow: var(--glow-medium);
  --umm-current-surface-glow-hover: var(--glow-medium);
}

.umm16 .launch-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(83, 176, 255, 0.14), rgba(28, 34, 48, 0.24));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: rgba(245, 247, 250, 0.92);
  margin-bottom: 12px;
}

.umm16 .launch-media {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.umm16 .launch-media__ph {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 18px;
  text-align: center;
  color: var(--muted);
}

.umm16 .launch-media__ph--video-preview {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: left;
  color: inherit;
  isolation: isolate;
}

.umm16 .launch-media__ph--video-preview::before {
  content: '';
  position: absolute;
  inset: -10% -8%;
  border-radius: inherit;
  background: radial-gradient(54% 56% at 50% 50%, rgba(59, 130, 246, 0.26) 0%, rgba(59, 130, 246, 0) 72%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.umm16 .launch-media__ph--video-preview picture,
.umm16 .launch-media__ph--video-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  z-index: 0;
}

.umm16 .launch-media__ph--video-preview .launch-video-placeholder {
  z-index: 2;
}

.umm16 .launch-media__cap {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--small);
  color: var(--muted);
  background: rgba(28, 34, 48, 0.5);
}

.umm16 .launch-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 30px);
  align-items: stretch;
  transform: none;
}

/* Pricing section compositing guardrail:
   keep this subtree off transformed/GPU-composited layers so text rasterizes crisply. */
.umm16 .pricing-section,
.umm16 .pricing-section .launch-shell,
.umm16 .pricing-section .launch-pricing,
.umm16 .pricing-section .launch-price-card,
.umm16 .pricing-section .launch-price-head,
.umm16 .pricing-section .launch-price-cta .launch-btn {
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  perspective: none !important;
  will-change: auto !important;
  animation: none !important;
  opacity: 1 !important;
  contain: none !important;
}

.umm16 .pricing-section,
.umm16 .pricing-section * {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

.umm16 .pricing-section {
  padding-top: calc(var(--padY) * 0.3);
}

.umm16 .launch-price-card {
  --pricing-card-border: rgba(118, 171, 248, 0.34);
  --pricing-card-inner-border: rgba(218, 234, 255, 0.07);
  --pricing-card-bg:
    linear-gradient(158deg, rgba(43, 63, 101, 0.78) 0%, rgba(17, 27, 45, 0.94) 43%, rgba(8, 12, 22, 0.99) 100%);
  --pricing-card-shadow:
    0 16px 30px rgba(2, 7, 16, 0.46),
    0 7px 16px rgba(0, 0, 0, 0.28);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: clamp(30px, 3vw, 34px) clamp(28px, 2.8vw, 34px) clamp(30px, 2.9vw, 34px);
  text-align: center;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  border-radius: calc(var(--umm-surface-radius) + 2px);
  border-color: var(--pricing-card-border);
  background-color: rgba(11, 15, 26, 0.95);
  background-image:
    var(--pricing-card-bg),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 4px);
  box-shadow: var(--pricing-card-shadow);
  transition: border-color 130ms ease-out, box-shadow 130ms ease-out;
  transform: none;
}

.umm16 .launch-price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--pricing-card-border);
  pointer-events: none;
  z-index: 1;
}

.umm16 .launch-price-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--umm-surface-radius) + 1px);
  border: 1px solid var(--pricing-card-inner-border);
  pointer-events: none;
  z-index: 1;
}

.umm16 .launch-price-card > * {
  position: relative;
  z-index: 2;
}

.umm16 .launch-price-card:hover,
.umm16 .launch-price-card:focus-within {
  border-color: rgba(90, 148, 228, 0.72);
  box-shadow: var(--pricing-card-shadow), 0 0 0 1px rgba(78, 136, 220, 0.54);
}

.umm16 .launch-price-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: none;
}

.umm16 .launch-price-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  width: 100%;
}

.umm16 .launch-price-title {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 630;
  letter-spacing: -0.012em;
  color: rgba(236, 243, 252, 0.96);
}

.umm16 .launch-price {
  margin: 12px auto 0;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  color: var(--umm-text-strong);
}

.umm16 .launch-price-currency {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  margin-top: 6px;
  color: rgba(236, 244, 255, 0.94);
}

.umm16 .launch-price-value {
  font-size: 40px;
  line-height: 0.94;
  font-weight: 790;
  letter-spacing: -0.028em;
  color: var(--umm-text-strong);
}

.umm16 .launch-price-cadence {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  color: rgba(186, 202, 223, 0.78);
}

.umm16 .launch-preserve-breaks {
  white-space: pre-line;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 28ch;
}

.umm16 .launch-price-card .launch-preserve-breaks {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 30ch;
}

.umm16 .launch-price-description {
  margin: 16px auto 0;
  padding-top: 10px;
  max-width: 30ch;
  min-height: 46px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(196, 210, 230, 0.82);
}

.umm16 .launch-list {
  margin: 12px auto 0;
  padding-left: 22px;
  color: var(--umm-text-body);
  text-align: left;
  max-width: 28ch;
}

.umm16 .launch-list li {
  margin: 8px 0;
}

.umm16 .launch-list--pricing {
  margin: 22px auto 0;
  width: min(100%, 240px);
  padding: 12px 0 0 30px;
  border-top: 1px solid rgba(182, 205, 242, 0.14);
  list-style: none;
  text-align: left;
  max-width: 240px;
  display: grid;
  gap: 9px;
  transform: translateX(-8px);
}

.umm16 .launch-list--pricing li {
  margin: 0;
  padding-left: 18px;
  position: relative;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(214, 227, 244, 0.88);
  white-space: nowrap;
}

.umm16 .launch-list--pricing li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 4px;
  border-left: 2px solid rgba(122, 184, 255, 0.92);
  border-bottom: 2px solid rgba(122, 184, 255, 0.92);
  transform: rotate(-45deg);
}

.umm16 .launch-list--pricing li:first-child {
  color: rgba(233, 242, 252, 0.96);
  font-weight: 620;
}

.umm16 .launch-list--compact {
  margin: 10px 0 0;
  max-width: none;
  padding-left: 20px;
}

.umm16 .launch-outcome-list {
  margin: 6px 0 8px;
  padding-left: 20px;
  text-align: left;
  max-width: 24ch;
}

.umm16 .launch-production-engines {
  margin: 12px 0 0;
}

.umm16 .launch-outcome-list li {
  margin: 4px 0;
}

.umm16 .launch-fine {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--small);
  color: var(--umm-text-muted);
  line-height: 1.4;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

.umm16 .launch-price-cta {
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
}

.umm16 .launch-price-cta .launch-btn {
  width: min(100%, 232px);
}

.umm16 .launch-price-card .launch-fine--compat {
  margin-top: 14px;
  width: 100%;
  padding-top: 14px;
  border-top-color: rgba(176, 197, 232, 0.1);
  font-size: 12px !important;
  line-height: 1.62 !important;
  color: rgba(184, 201, 224, 0.72) !important;
  font-style: italic;
}

.umm16 .pricing-section .launch-card--pricing-support {
  text-align: center;
}

.umm16 .pricing-section .launch-pricing-guarantee {
  --umm-current-surface-bg: rgba(10, 15, 26, 0.92);
  --umm-current-surface-gradient:
    linear-gradient(180deg, rgba(28, 40, 64, 0.56) 0%, rgba(8, 13, 23, 0.95) 100%);
  --umm-current-surface-border: rgba(118, 160, 232, 0.34);
  --umm-current-surface-glow:
    0 0 0 1px rgba(110, 152, 228, 0.1),
    0 9px 18px rgba(0, 0, 0, 0.36);
  --umm-current-surface-glow-hover:
    0 0 0 1px rgba(116, 158, 234, 0.12),
    0 10px 20px rgba(0, 0, 0, 0.38);
  width: 100%;
  display: grid;
  gap: 5px;
  justify-items: center;
  padding: 11px 20px 12px;
}

.umm16 .pricing-section .launch-pricing-guarantee__title {
  margin: 0;
  text-align: center;
  font-size: clamp(0.99rem, 1.42vw, 1.08rem);
  line-height: 1.14;
}

.umm16 .pricing-section .launch-pricing-guarantee__copy {
  margin: 0 auto;
  max-width: none;
  text-align: center;
  color: rgba(228, 236, 247, 0.88);
  line-height: 1.32;
}

.umm16 .pricing-section .launch-pricing-kicker {
  margin-top: 9px;
}

.umm16 .pricing-section .launch-pricing-support__copy {
  margin: 0 auto;
  max-width: none;
  text-align: center;
}

.umm16 .pricing-section .launch-pricing-team-cta {
  margin-top: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.umm16 .pricing-section .launch-pricing-team-cta .launch-pricing-support__copy {
  margin: 0 auto;
  max-width: none;
}

.umm16 .pricing-section .launch-pricing-team-cta .launch-btn {
  width: min(100%, 232px);
}

.umm16 .launch-faq {
  display: grid;
  gap: 14px;
}

.umm16 .launch-faq details {
  padding: 18px 22px;
  cursor: pointer;
  transition: border-color 0.22s ease-out, box-shadow 0.22s ease-out, background-image 0.22s ease-out;
}

.umm16 .launch-faq details:hover,
.umm16 .launch-faq details:focus-visible,
.umm16 .launch-faq details:focus-within,
.umm16 .launch-faq details:active {
  border-color: var(--faq-row-border-hover);
  box-shadow: var(--umm-current-surface-glow-hover), var(--surface-inner-edge-highlight);
}

.umm16 .launch-faq details[open] {
  border-color: var(--faq-row-border-open);
  box-shadow: var(--umm-current-surface-glow-hover), var(--surface-inner-edge-highlight);
}

.umm16 .launch-faq summary {
  display: block;
  width: 100%;
  padding: 2px 0;
  cursor: pointer;
  font-weight: 650;
  color: var(--umm-text-strong);
  list-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.umm16 .launch-faq summary::-webkit-details-marker {
  display: none;
}

.umm16 .launch-faq details p {
  margin-top: 10px;
  margin-bottom: 0;
}

.umm16 .launch-section--final {
  padding: clamp(24px, 4vw, 42px) 0 clamp(20px, 3.6vw, 34px);
}

.umm16 .launch-final-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(108, 156, 238, 0.24);
  background: rgba(10, 15, 24, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(188, 215, 255, 0.09),
    0 10px 22px rgba(0, 0, 0, 0.48);
}

.umm16 .launch-final-strip__text {
  margin: 0;
  max-width: none;
  text-align: center;
  font-size: clamp(0.95rem, 1.9vw, 1.04rem);
  color: rgba(235, 241, 252, 0.86);
}

.umm16 .launch-final-strip__actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.umm16 .site-footer--resources {
  padding: 48px 0;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 22, 0.35);
}

.umm16 .site-footer__resources-wrap {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 22px) clamp(26px, 4vw, 36px);
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.umm16 .site-footer__resources-title {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.umm16 .site-footer__resources-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.umm16 .site-footer__resources-nav a {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(28, 34, 48, 0.42);
  text-decoration: none;
  color: var(--muted-strong);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.umm16 .site-footer__resources-nav a:hover,
.umm16 .site-footer__resources-nav a:focus-visible {
  border-color: rgba(83, 176, 255, 0.32);
  background: rgba(83, 176, 255, 0.12);
  color: var(--text);
  outline: none;
}

.umm16 .launch-main p.launch-page-note {
  margin: clamp(16px, 2vw, 24px) auto 0;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  font-size: 13px;
  line-height: 1.58;
  color: rgba(178, 201, 232, 0.78);
}

.umm16 .site-footer__copyright {
  margin: clamp(18px, 2.2vw, 24px) 0 0;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 44ch;
}

.umm16 .site-footer--resources-muted .site-footer__resources-nav {
  gap: 14px;
}

.umm16 .site-footer--resources-muted .site-footer__resources-nav a {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  border-color: transparent;
  background: transparent;
  color: rgba(171, 190, 216, 0.7);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.umm16 .site-footer--resources-muted .site-footer__resources-nav a:hover,
.umm16 .site-footer--resources-muted .site-footer__resources-nav a:focus-visible {
  border-color: transparent;
  background: transparent;
  color: rgba(210, 226, 246, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 560px) {
  .umm16 .site-footer--resources:not(.site-footer--resources-muted) .site-footer__resources-nav {
    width: min(360px, 100%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .umm16 .site-footer--resources:not(.site-footer--resources-muted) .site-footer__resources-nav a {
    width: 100%;
    justify-content: center;
  }
}

.umm16 .launch-video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11990;
  padding: clamp(12px, 2vw, 26px);
}

.umm16 .launch-video-overlay[hidden] {
  display: none;
}

.umm16 .launch-video-overlay__panel {
  width: min(1400px, calc(100vw - (clamp(12px, 2vw, 26px) * 2)));
  max-height: calc(100vh - (clamp(12px, 2vw, 26px) * 2));
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(68, 118, 208, 0.34);
  background-color: var(--surface-bg);
  background-image: var(--surface-gradient);
  box-shadow:
    0 0 0 1px rgba(68, 118, 208, 0.16),
    var(--surface-inner-edge-highlight),
    0 28px 64px rgba(0, 0, 0, 0.78);
  padding: clamp(18px, 1.8vw, 24px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 14px);
}

.umm16 .launch-video-overlay__panel > * {
  position: relative;
  z-index: 1;
}

.umm16 .launch-video-overlay__close {
  position: absolute;
  top: clamp(10px, 1.4vw, 16px);
  right: clamp(10px, 1.4vw, 16px);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(4, 8, 15, 0.74);
  color: rgba(255, 255, 255, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.umm16 .launch-video-overlay__close:hover,
.umm16 .launch-video-overlay__close:focus-visible {
  background: rgba(10, 16, 28, 0.88);
  border-color: rgba(126, 170, 247, 0.36);
  outline: none;
}

.umm16 .launch-video-overlay__frame {
  position: relative;
  width: min(100%, calc((100vh - 170px) * 1.7778));
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: rgba(0, 0, 0, 1);
  margin: 0 auto;
  isolation: isolate;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.58),
    0 6px 14px rgba(0, 0, 0, 0.24);
}

.umm16 .launch-video-overlay__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: inherit;
  background: #000;
}

.umm16 .launch-video-overlay__mobile-actions {
  position: absolute;
  top: clamp(10px, 1.4vw, 16px);
  left: clamp(10px, 1.4vw, 16px);
  right: clamp(10px, 1.4vw, 16px);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}

.umm16 .launch-video-overlay__mobile-action {
  pointer-events: auto;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(4, 8, 15, 0.76);
  color: rgba(255, 255, 255, 0.96);
  padding: 0 16px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.umm16 .launch-video-overlay__mobile-action:hover,
.umm16 .launch-video-overlay__mobile-action:focus-visible {
  background: rgba(10, 16, 28, 0.88);
  border-color: rgba(126, 170, 247, 0.36);
  outline: none;
}

.umm16 .launch-video-overlay__mobile-action--close {
  margin-left: auto;
}

.umm16 .launch-video-overlay__mobile-player-host,
.umm16 .launch-video-overlay__mobile-player-host > div,
.umm16 .launch-video-overlay__mobile-player-host iframe {
  width: 100%;
  height: 100%;
}

.umm16 .launch-video-overlay__mobile-player-host iframe {
  border: 0;
  display: block;
  background: #000;
}

.umm16 .launch-video-overlay__mobile-state {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.umm16 .launch-video-overlay__mobile-state[data-state="loading"] {
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.18) 30%, rgba(0, 0, 0, 0));
}

.umm16 .launch-video-overlay__mobile-state[data-state="blocked"],
.umm16 .launch-video-overlay__mobile-state[data-state="error"] {
  background: rgba(0, 0, 0, 0.34);
}

.umm16 .launch-video-overlay__mobile-play {
  min-width: min(280px, calc(100vw - 56px));
  min-height: 60px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #8ab8ff, #5787ff);
  color: #041120;
  padding: 0 28px;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 22px 46px rgba(47, 86, 184, 0.34);
  cursor: pointer;
}

.umm16 .launch-video-overlay__mobile-play:hover,
.umm16 .launch-video-overlay__mobile-play:focus-visible {
  filter: brightness(1.05);
  outline: none;
}

.umm16 .launch-video-overlay__mobile-loading {
  margin: 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(4, 8, 15, 0.7);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.2;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.umm16 .launch-video-overlay__panel:focus,
.umm16 .launch-video-overlay__panel:focus-visible,
.umm16 .launch-video-overlay__panel:focus-within {
  outline: none;
}

.umm16 .launch-video-overlay__panel:focus .launch-video-overlay__frame,
.umm16 .launch-video-overlay__panel:focus-visible .launch-video-overlay__frame,
.umm16 .launch-video-overlay__panel:focus-within .launch-video-overlay__frame {
  box-shadow:
    0 22px 38px rgba(0, 0, 0, 0.6),
    0 8px 18px rgba(0, 0, 0, 0.26);
}

.umm16 .launch-eula-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 18, 0.78);
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  padding: 20px;
}

.umm16 .launch-eula-panel {
  width: min(720px, 96vw);
  max-height: 86vh;
  background-color: var(--surface-bg);
  background-image: var(--surface-gradient);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-large);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: var(--glow-tight), 0 10px 28px rgba(0, 0, 0, 0.7);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.umm16 .launch-eula-panel--compact {
  width: min(520px, 96vw);
  max-height: none;
  gap: 14px;
}

.umm16 .launch-eula-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.umm16 .launch-eula-header h3 {
  margin: 0;
  text-align: center;
}

.umm16 .launch-eula-copy {
  margin: 0;
  color: rgba(219, 229, 242, 0.86);
  line-height: 1.5;
  text-align: center;
}

.umm16 .launch-eula-scroll {
  background: rgba(14, 17, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  max-height: 54vh;
  overflow: auto;
  color-scheme: dark;
  scrollbar-width: thin;
  scrollbar-color: rgba(176, 188, 205, 0.72) rgba(10, 14, 21, 0.96);
}

.umm16 .launch-eula-scroll::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 12px;
  background: rgba(10, 14, 21, 0.96);
}

.umm16 .launch-eula-scroll::-webkit-scrollbar-track {
  -webkit-appearance: none;
  background: rgba(10, 14, 21, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.umm16 .launch-eula-scroll::-webkit-scrollbar-track-piece,
.umm16 .launch-eula-scroll::-webkit-scrollbar-corner {
  background: rgba(10, 14, 21, 0.96);
}

.umm16 .launch-eula-scroll::-webkit-scrollbar-thumb {
  -webkit-appearance: none;
  background-color: rgba(176, 188, 205, 0.72);
  border-radius: 999px;
  border: 3px solid rgba(10, 14, 21, 0.96);
}

.umm16 .launch-eula-scroll::-webkit-scrollbar-thumb:hover {
  background-color: rgba(196, 208, 224, 0.82);
}

.umm16 .launch-eula-consent {
  display: grid;
  gap: 11px;
  width: min(100%, 408px);
  margin-inline: auto;
  padding: 14px 14px 14px 20px;
  background: rgba(14, 17, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.umm16 .launch-eula-agree {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  text-align: center;
  width: 100%;
  padding: 4px 2px;
  margin: -4px -2px;
  cursor: pointer;
  border-radius: 8px;
}

.umm16 .launch-eula-agree--compact {
  justify-content: flex-start;
  text-align: left;
}

.umm16 .launch-eula-agree input {
  flex: 0 0 auto;
  margin-top: 1px;
}

.umm16 .launch-eula-inline-link {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(155, 194, 252, 0.96);
  font: inherit;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  cursor: pointer;
}

.umm16 .launch-eula-inline-link:hover,
.umm16 .launch-eula-inline-link:focus-visible {
  color: rgba(184, 214, 255, 0.98);
  text-decoration-thickness: 2px;
}

.umm16 .launch-eula-inline-link:focus-visible {
  outline: 2px solid rgba(132, 185, 255, 0.52);
  outline-offset: 4px;
  border-radius: 4px;
}

.umm16 .launch-eula-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.umm16 .launch-eula-actions--compact {
  margin-top: 2px;
}

.umm16 .launch-eula-trust {
  margin: 2px 0 0;
  font-size: 0.8rem;
  line-height: 1.35;
  text-align: center;
  color: rgba(189, 201, 218, 0.62);
}

.umm16 .launch-eula-actions--compact .launch-btn--primary:disabled,
.umm16 .launch-eula-actions--compact .launch-btn--primary[disabled],
.umm16 .launch-eula-actions--compact .btn-primary:disabled,
.umm16 .launch-eula-actions--compact .btn-primary[disabled] {
  opacity: 0.46;
  border-color: rgba(86, 118, 176, 0.38);
  background: linear-gradient(180deg, rgba(36, 57, 96, 0.94), rgba(24, 40, 73, 0.94));
  color: rgba(222, 232, 245, 0.78);
  box-shadow: none;
}

.umm16 .launch-mt-lg {
  margin-top: 18px;
}

.umm16 .launch-mt-md {
  margin-top: 14px;
}

.umm16 .launch-gap-sm {
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 1120px) {
  .umm16 .launch-topbar__inner {
    gap: 12px;
  }

  .umm16 .launch-topbar__cta {
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .umm16 {
    --umm-mobile-flow-gap: clamp(12px, 2.4vw, 18px);
    --umm-anchor-offset: 70px;
  }

  .umm16 .launch-topbar {
    top: 0;
    z-index: 1200;
  }

  .umm16 .launch-hero__grid,
  .umm16 .launch-grid--two,
  .umm16 .launch-pricing,
  .umm16 .launch-grid--three,
  .umm16 .launch-grid--four,
  .umm16 .launch-grid--ba {
    grid-template-columns: 1fr;
  }

  .umm16 {
    --launch-hero-copy-size: 17px;
  }

  .umm16 .launch-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .umm16 .launch-hero__copy {
    order: 1;
    gap: 16px;
  }

  .umm16 .launch-hero__meta-block {
    order: 2;
    margin-bottom: 20px;
  }

  .umm16 .launch-hero__grid > .launch-video-frame {
    order: 3;
    align-self: stretch;
  }

  .umm16 .launch-topbar__links {
    display: none;
  }

  .umm16 .launch-topbar__actions {
    gap: 8px;
  }

  .umm16 .launch-topbar__cta {
    display: none;
  }

  .umm16 .launch-topbar__menu-toggle {
    display: inline-flex;
  }

  .umm16 .launch-materializer-grid {
    grid-template-areas:
      'copy'
      'steps'
      'preview';
  }

  .umm16 #materializer-preview {
    margin-top: 0;
  }

  .umm16 .launch-topbar__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px 0;
    position: relative;
    z-index: 2;
  }

  .umm16 .launch-brand {
    min-width: 0;
    max-width: 100%;
  }

  .umm16 .launch-brand__title {
    max-width: min(62vw, 270px);
    overflow: hidden;
  }

  .umm16 .launch-brand__name,
  .umm16 .launch-brand__product {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .umm16 .launch-topbar__mobile-panel {
    display: grid;
    align-content: start;
    padding: max(calc(env(safe-area-inset-top, 0px) + 68px), 68px) 0 max(calc(env(safe-area-inset-bottom, 0px) + 18px), 18px);
    background: rgba(2, 6, 12, 0.74);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    overflow-y: auto;
  }

  .launch-menu-open .umm16 .launch-topbar__mobile-panel,
  body.launch-menu-open.umm16 .launch-topbar__mobile-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .launch-menu-open .umm16 .launch-resource-subnav,
  body.launch-menu-open.umm16 .launch-resource-subnav {
    visibility: hidden;
    pointer-events: none;
  }

  .launch-menu-open .umm16 .launch-resource-switcher,
  body.launch-menu-open.umm16 .launch-resource-switcher {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .umm16 .launch-topbar__mobile-menu {
    padding: 16px;
    display: grid;
    gap: 14px;
  }

  .umm16 .launch-resource-subnav {
    display: none;
  }

  .umm16 .launch-topbar--with-subnav {
    border-bottom: 1px solid rgba(105, 156, 244, 0.24);
    box-shadow: none;
  }

  .umm16 .launch-resource-switcher {
    display: block;
    padding: 0 var(--padX);
    margin: -1px 0 0;
    position: sticky;
    top: calc(var(--launch-mobile-header-offset, 72px) - 1px);
    z-index: 1150;
    background:
      linear-gradient(180deg, rgba(8, 12, 20, 0.78), rgba(8, 12, 20, 0.58)),
      radial-gradient(130% 180% at 50% -80%, rgba(97, 154, 252, 0.18), rgba(97, 154, 252, 0));
    backdrop-filter: blur(12px) saturate(132%);
    -webkit-backdrop-filter: blur(12px) saturate(132%);
    border-bottom: 1px solid rgba(105, 156, 244, 0.24);
    transition: transform 220ms ease, opacity 200ms ease, visibility 200ms ease;
    will-change: transform;
  }

  .launch-chrome-scroll-hidden .umm16 .launch-topbar,
  .launch-chrome-scroll-hidden.umm16 .launch-topbar,
  body.launch-chrome-scroll-hidden.umm16 .launch-topbar {
    transform: translateY(calc(-100% - 2px)) !important;
  }

  .launch-chrome-scroll-hidden .umm16 .launch-resource-switcher,
  .launch-chrome-scroll-hidden.umm16 .launch-resource-switcher,
  body.launch-chrome-scroll-hidden.umm16 .launch-resource-switcher {
    transform: translateY(calc(-1 * (var(--launch-mobile-header-offset, 72px) + 100%)));
  }

  .umm16 .launch-problem-solution {
    grid-template-columns: 1fr;
    gap: clamp(54px, 10vw, 72px);
  }

  .umm16 .launch-resource-switcher__link {
    width: 100%;
  }

  .umm16-doc > .launch-resource-switcher {
    margin-bottom: clamp(20px, 4.8vw, 28px);
  }

  .umm16-doc > .launch-resource-switcher + main {
    margin-top: clamp(8px, 2vw, 12px);
  }

  .umm16 .launch-resource-grid {
    grid-template-columns: 1fr;
  }

  .umm16 .launch-main--resources {
    --launch-resource-grid-gap: clamp(18px, 4vw, 22px);
    --launch-resource-card-pad: clamp(22px, 3.8vw, 25px);
    padding-bottom: clamp(16px, 3.6vw, 24px);
  }

  .umm16 .launch-main--downloads {
    --launch-download-grid-gap: clamp(18px, 4vw, 22px);
    --launch-download-card-pad: clamp(22px, 3.8vw, 25px);
    --launch-download-column-pad: clamp(18px, 3.6vw, 22px);
    --launch-download-gap-hero-module: clamp(64px, 8vw, 80px);
    --launch-download-gap-module-details: clamp(48px, 7vw, 60px);
    --launch-download-gap-details-install: clamp(48px, 7vw, 60px);
    padding-bottom: clamp(16px, 3.6vw, 24px);
  }

  .umm16 .launch-main--resource-system {
    --launch-resource-layout-grid-gap: clamp(18px, 4vw, 22px);
    --launch-resource-layout-card-pad: clamp(22px, 3.8vw, 25px);
    --launch-resource-layout-column-pad: clamp(18px, 3.6vw, 22px);
    --launch-resource-layout-gap-hero-primary: clamp(64px, 8vw, 80px);
    --launch-resource-layout-gap-primary-grid: clamp(48px, 7vw, 60px);
    --launch-resource-layout-gap-grid-detail: clamp(48px, 7vw, 60px);
    padding-bottom: clamp(16px, 3.6vw, 24px);
  }

  .umm16 .launch-section--resources-hero {
    padding-top: calc(var(--padY) * 0.6);
    padding-bottom: calc(var(--padY) * 0.5);
  }

  .umm16 .launch-section--downloads-hero {
    padding-top: calc(var(--padY) * 0.52);
    padding-bottom: var(--launch-download-gap-hero-module);
  }

  .umm16 .launch-section--downloads-hero .launch-resource-intro {
    max-width: none;
  }

  .umm16 .launch-section--resource-layout-hero {
    padding-top: calc(var(--padY) * 0.52);
    padding-bottom: var(--launch-resource-layout-gap-hero-primary);
  }

  .umm16 .launch-section--resource-layout-hero .launch-resource-intro {
    max-width: none;
  }

  .umm16 .launch-section--resource-layout-primary {
    padding-top: 0;
    padding-bottom: 0;
  }

  .umm16 .launch-section--resource-layout-grid {
    padding-top: var(--launch-resource-layout-gap-primary-grid);
    padding-bottom: 0;
  }

  .umm16 .launch-section--resource-layout-detail {
    padding-top: 0;
    padding-bottom: clamp(16px, 3.6vw, 24px);
  }

  .umm16 .launch-section--resources-cards {
    padding-top: calc(var(--padY) * 0.56);
  }

  .umm16 .launch-section--downloads-release {
    padding-top: 0;
    padding-bottom: 0;
  }

  .umm16 .launch-section--resources-quick {
    padding-top: calc(var(--padY) * 0.5);
    padding-bottom: clamp(16px, 3.6vw, 24px);
  }

  .umm16 .launch-section--downloads-details {
    padding-top: 0;
    padding-bottom: clamp(16px, 3.6vw, 24px);
  }

  .umm16 .launch-download-release__meta {
    grid-template-columns: 1fr;
  }

  .umm16 .launch-resource-layout-meta {
    grid-template-columns: 1fr;
  }

  .umm16 .launch-download-release__meta-item {
    min-height: 0;
  }

  .umm16 .launch-resource-layout-meta-item {
    min-height: 0;
  }

  .umm16 .launch-download-next {
    grid-template-columns: 1fr;
  }

  .umm16 .launch-download-grid {
    grid-template-columns: 1fr;
    row-gap: var(--launch-download-grid-gap);
  }

  .umm16 .launch-resource-layout-grid {
    grid-template-columns: 1fr;
  }

  .umm16 .launch-download-card--full {
    grid-column: auto;
  }

  .umm16 .launch-resource-layout-card--full {
    grid-column: auto;
  }

  .umm16 .launch-problem {
    max-width: none;
  }

  .umm16 .launch-tool-tile strong,
  .umm16 .launch-materializer-step strong,
  .umm16 .launch-case-card h3 {
    font-size: 1.16rem;
  }

  .umm16 .launch-materializer-shell {
    padding: 24px;
  }

  .umm16 .launch-materializer-preview-media {
    min-height: 0;
  }

  .umm16 .launch-case-media {
    min-height: 0;
  }

  .umm16 .launch-production-copy {
    max-width: none;
  }

  .umm16 .launch-production-grid--proof {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 12px;
  }

  .umm16 .launch-production-proof-group {
    padding: 16px 18px 15px;
  }

  .umm16 #production .launch-shell {
    padding: 22px calc(var(--padX) + 18px);
  }

  .umm16 #production .launch-shell::before {
    border-radius: 18px;
  }

  .umm16 .launch-production-card {
    margin-top: 0;
  }

  .umm16 .launch-production-list li {
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .umm16 .launch-production-footnote {
    margin-top: 0;
    padding-top: 0;
  }

  .umm16 .launch-pricing {
    gap: 18px;
  }

  .umm16 .pricing-section {
    padding-top: calc(var(--padY) * 0.26);
  }

  .umm16 .pricing-section .launch-pricing-guarantee {
    gap: 4px;
    padding: 10px 18px 11px;
  }

  .umm16 .pricing-section .launch-pricing-kicker {
    margin-top: 8px;
  }

  .umm16 .launch-price-card {
    min-height: 100%;
  }

  .umm16 .launch-price-description {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .umm16 {
    --padY: clamp(46px, 12vw, 62px);
    --padX: clamp(16px, 5.6vw, 22px);
    --umm-mobile-flow-gap: clamp(12px, 4.2vw, 18px);
    --umm-anchor-offset: 64px;
  }

  .umm16 .launch-main {
    padding-bottom: calc(var(--padY) * 0.88);
  }

  .umm16 .launch-main--resources {
    padding-bottom: clamp(14px, 4vw, 22px);
  }

  .umm16 .launch-main--downloads {
    --launch-download-column-pad: clamp(14px, 4.8vw, 18px);
    --launch-download-gap-hero-module: clamp(42px, 10vw, 54px);
    --launch-download-gap-module-details: clamp(30px, 7vw, 42px);
    --launch-download-gap-details-install: clamp(30px, 7vw, 42px);
    padding-bottom: clamp(14px, 4vw, 22px);
  }

  .umm16 .launch-main--resource-system {
    --launch-resource-layout-column-pad: clamp(14px, 4.8vw, 18px);
    --launch-resource-layout-gap-hero-primary: clamp(42px, 10vw, 54px);
    --launch-resource-layout-gap-primary-grid: clamp(30px, 7vw, 42px);
    --launch-resource-layout-gap-grid-detail: clamp(30px, 7vw, 42px);
    padding-bottom: clamp(14px, 4vw, 22px);
  }

  .umm16 .launch-section--downloads-hero {
    padding-top: calc(var(--padY) * 0.34);
    padding-bottom: var(--launch-download-gap-hero-module);
  }

  .umm16 .launch-section--resource-layout-hero {
    padding-top: calc(var(--padY) * 0.34);
    padding-bottom: var(--launch-resource-layout-gap-hero-primary);
  }

  .umm16 .launch-section--downloads-release {
    padding-top: 0;
    padding-bottom: 0;
  }

  .umm16 .launch-section--resource-layout-primary {
    padding-top: 0;
    padding-bottom: 0;
  }

  .umm16 .launch-section--downloads-details {
    padding-top: 0;
    padding-bottom: clamp(12px, 3.8vw, 20px);
  }

  .umm16 .launch-section--resource-layout-grid {
    padding-top: var(--launch-resource-layout-gap-primary-grid);
    padding-bottom: 0;
  }

  .umm16 .launch-section--resource-layout-detail {
    padding-top: 0;
    padding-bottom: clamp(12px, 3.8vw, 20px);
  }

  .umm16 .launch-shell {
    padding-left: var(--padX);
    padding-right: var(--padX);
  }

  .umm16 .launch-hero {
    padding-top: clamp(30px, 8vw, 44px);
    padding-bottom: calc(var(--padY) * 0.92);
  }

  .umm16 .launch-section,
  .umm16 .launch-section--problem-solution,
  .umm16 #tools,
  .umm16 #materializer,
  .umm16 #cases,
  .umm16 #production {
    padding-top: calc(var(--padY) * 0.88);
    padding-bottom: calc(var(--padY) * 0.84);
  }

  .umm16 .launch-hero + .launch-section,
  .umm16 .launch-section + .launch-section {
    position: relative;
    margin-top: var(--umm-mobile-flow-gap);
  }

  .umm16 .launch-hero + .launch-section::before,
  .umm16 .launch-section + .launch-section::before {
    content: '';
    position: absolute;
    top: calc(var(--umm-mobile-flow-gap) * -0.5);
    left: var(--padX);
    right: var(--padX);
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(88, 136, 234, 0),
      rgba(118, 172, 255, 0.56) 50%,
      rgba(88, 136, 234, 0)
    );
    pointer-events: none;
  }

  .umm16 .launch-topbar__inner {
    gap: 10px;
  }

  .umm16 .launch-brand__product {
    display: none;
  }

  .umm16 .launch-topbar__mobile-links,
  .umm16 .launch-topbar__mobile-actions {
    grid-template-columns: 1fr;
  }

  .umm16 .launch-resource-subnav {
    min-height: 44px;
  }

  .umm16 .launch-resource-subnav__inner {
    min-height: 44px;
  }

  .umm16 .launch-main h1 {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }

  .umm16 .launch-hero__lead {
    line-height: 1.48;
    max-width: 34rem;
  }

  .umm16 .launch-hero__intro {
    gap: 12px;
  }

  .umm16 .launch-hero__checklist li {
    line-height: 1.5;
  }

  .umm16 .launch-hero__checklist li::before {
    font-size: 15px;
  }

  .umm16 .launch-hero__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .umm16 .launch-hero__cta-row .launch-btn {
    width: 100%;
  }

  .umm16 .launch-problem-solution {
    gap: clamp(54px, 10vw, 72px);
  }

  .umm16 .launch-card {
    padding: 18px;
  }

  .umm16 .launch-resource-card {
    padding: clamp(20px, 5vw, 24px);
  }

  .umm16 .launch-download-card {
    padding: clamp(20px, 5vw, 24px);
  }

  .umm16 .launch-download-release {
    padding: 20px;
  }

  .umm16 .launch-resource-layout-primary-card {
    padding: 20px;
  }

  .umm16 .launch-download-release__actions {
    justify-items: stretch;
  }

  .umm16 .launch-download-release__button {
    width: 100%;
  }

  .umm16 .launch-download-next {
    margin-top: 0;
    padding: 10px 12px;
  }

  .umm16 .version-history-list p {
    font-size: 15px;
  }

  .umm16 .launch-price-card {
    padding: 28px;
  }

  .umm16 .launch-materializer-preview-card,
  .umm16 .launch-production-card {
    padding: 0;
  }

  .umm16 .launch-problem {
    padding-left: 14px;
  }

  .umm16 .launch-problem-list {
    gap: 14px;
  }

  .umm16 .launch-tool-tile {
    padding: 16px 18px 18px;
  }

  .umm16 .launch-materializer-shell {
    --umm-surface-radius: 18px;
    padding: 18px;
  }

  .umm16 .launch-tool-tile strong,
  .umm16 .launch-materializer-step strong,
  .umm16 .launch-case-card h3 {
    font-size: 1.12rem;
  }

  .umm16 .launch-materializer-preview-media .launch-media__cap {
    margin-left: 12px;
    margin-bottom: 12px;
  }

  .umm16 .launch-production-list {
    padding-left: 0;
  }

  .umm16 .launch-production-proof-group {
    padding: 15px 16px 14px;
    border-radius: 16px;
  }

  .umm16 .launch-production-proof-stats {
    --launch-production-proof-stat-gap: 12px;
    gap: var(--launch-production-proof-stat-gap);
  }

  .umm16 .launch-production-proof-stat dd {
    font-size: clamp(1.25rem, 7vw, 1.55rem);
  }

  .umm16 .launch-production-proof-stat dt {
    margin-top: 6px;
    font-size: 0.72rem;
  }

  .umm16 .pricing-section .launch-pricing-guarantee {
    gap: 4px;
    padding: 10px 16px 11px;
  }

  .umm16 .pricing-section .launch-pricing-kicker {
    margin-top: 8px;
  }

  .umm16 .launch-final-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
  }

  .umm16 .launch-final-strip__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    justify-content: stretch;
    gap: 10px;
  }

  .umm16 .launch-final-strip__actions .launch-btn {
    width: 100%;
    min-height: 44px;
    text-align: center;
  }

  .umm16 .launch-video-frame,
  .umm16 .launch-media {
    min-height: 0;
  }

  .umm16 .launch-video-frame {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .umm16 .launch-production-media,
  .umm16 .launch-materializer-preview-media,
  .umm16 .launch-media__ph--materializer {
    min-height: 0;
  }

  .umm16 .launch-video-overlay__panel {
    width: 100vw;
    max-width: 100vw;
    max-height: 100dvh;
    min-height: 100dvh;
    justify-content: center;
    border-radius: 0;
    border: 0;
    background: #000;
    background-image: none;
    box-shadow: none;
    padding: 0;
    gap: 0;
    overflow: visible;
  }

  .umm16 .launch-video-overlay {
    padding: 0;
    background: rgba(0, 0, 0, 0.96);
  }

  .umm16 .launch-video-overlay__frame {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    isolation: auto;
  }

  .umm16 .launch-video-overlay__frame iframe {
    border-radius: 0;
  }

  .umm16 .launch-video-overlay__close {
    top: max(calc(env(safe-area-inset-top, 0px) + 10px), 10px);
    right: max(calc(env(safe-area-inset-right, 0px) + 10px), 10px);
  }

  .umm16 .launch-video-overlay__mobile-actions {
    top: max(calc(env(safe-area-inset-top, 0px) + 10px), 10px);
    left: max(calc(env(safe-area-inset-left, 0px) + 10px), 10px);
    right: max(calc(env(safe-area-inset-right, 0px) + 10px), 10px);
  }
}

@media (max-width: 640px) {
  .umm16 {
    --launch-hero-copy-size: 16px;
  }

  .umm16 .launch-hero__copy {
    gap: 14px;
  }

  .umm16 .launch-hero__lead {
    line-height: 1.46;
  }

  .umm16 .launch-hero__checklist {
    gap: 8px;
  }

  .umm16 .launch-hero__checklist li {
    gap: 9px;
    line-height: 1.45;
  }

  .umm16 .launch-hero__intro {
    gap: 10px;
  }

  .umm16 .launch-hero__checklist li::before {
    font-size: 14px;
  }
}

@media (max-width: 1024px) and (orientation: landscape) {
  .umm16 .launch-video-overlay__frame {
    width: 100vw;
    height: 100dvh;
    aspect-ratio: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .umm16 .launch-section {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .umm16 .launch-hero__motion-item {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .umm16 .launch-hero__meta-reveal {
    opacity: 1;
    animation: none;
  }

  .umm16 .hero::before,
  .umm16 .launch-hero::after,
  .umm16 .launch-video-frame--preview::before {
    animation: none;
    transform: none;
  }

  .umm16 .launch-btn,
  .umm16 .launch-btn:hover,
  .umm16 .launch-btn:focus-visible {
    transform: none;
  }

  .umm16 .launch-price-card,
  .umm16 .launch-price-card:hover,
  .umm16 .launch-price-card:focus-within,
  .umm16 .launch-price-cta .launch-btn,
  .umm16 .launch-price-cta .launch-btn:hover,
  .umm16 .launch-price-cta .launch-btn:focus-visible,
  .umm16 .launch-price-cta .launch-btn:active {
    transform: none;
  }
}

/* ============================
   UMM DOCS MANUAL OVERRIDES
   Keep CSS-only: docs HTML is generated by build-umm-content.mjs
   ============================ */

.docs.docs--manual {
  --docs-layout-gap: 24px;
  --docs-layout-toc-width: 280px;
  --docs-layout-content-max: 980px;
  --docs-section-rhythm: 48px;
  --docs-sticky-offset: calc(var(--launch-mobile-header-offset, 88px) + 16px);
  --docs-manual-screenshot-max-width: 640px;
  --docs-toc-scrollbar-track: rgba(6, 12, 22, 0.78);
  --docs-toc-scrollbar-thumb: rgba(154, 213, 255, 0.52);
  --docs-toc-scrollbar-thumb-hover: rgba(183, 228, 255, 0.78);
}

/* 1) Layout contract */
.docs.docs--manual .docs__body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.docs.docs--manual .docs__body > :last-child {
  min-width: 0;
}

.docs.docs--manual .docs__toc {
  position: sticky;
  top: var(--docs-sticky-offset);
  max-height: calc(100vh - var(--docs-sticky-offset) - 12px);
  max-height: calc(100dvh - var(--docs-sticky-offset) - 12px);
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 2px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--docs-toc-scrollbar-thumb) var(--docs-toc-scrollbar-track);
  scroll-padding-bottom: 16px;
  color-scheme: dark;
}

.docs.docs--manual .docs__toc::-webkit-scrollbar {
  width: 12px;
}

.docs.docs--manual .docs__toc::-webkit-scrollbar-track {
  background: var(--docs-toc-scrollbar-track);
  border-radius: 999px;
}

.docs.docs--manual .docs__toc::-webkit-scrollbar-track-piece {
  background: var(--docs-toc-scrollbar-track);
  border-radius: 999px;
}

.docs.docs--manual .docs__toc::-webkit-scrollbar-thumb {
  background-color: var(--docs-toc-scrollbar-thumb);
  border: 2px solid rgba(7, 12, 21, 0.9);
  border-radius: 999px;
}

.docs.docs--manual .docs__toc::-webkit-scrollbar-thumb:hover {
  background-color: var(--docs-toc-scrollbar-thumb-hover);
}

.docs.docs--manual .docs__toc::-webkit-scrollbar-corner {
  background: transparent;
}

.docs.docs--manual .docs__toc ol {
  padding-bottom: 6px;
}

.docs.docs--manual .docs__toc .doc-search-trigger--toc {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  margin-bottom: 12px;
  padding: 0 12px;
  gap: 10px;
  flex-direction: row;
  align-items: center;
}

.docs.docs--manual .doc-search-trigger--floating {
  display: none;
}

.docs.docs--manual .docs__content {
  width: 100%;
  min-width: 0;
  max-width: 980px;
  margin: 0;
}

.docs.docs--manual .docs__content > .doc-section {
  margin: 0 0 48px;
}

.docs.docs--manual .docs__content > .doc-section + .doc-section {
  margin-top: 0;
}

.docs.docs--manual .docs__content > .doc-section:last-child {
  margin-bottom: 0;
}

/* Keep search/anchor jumps clear of the sticky site chrome. */
.docs.docs--manual .doc-section[id],
.docs.docs--manual .doc-section [id],
.docs.docs--manual .doc-section :is(h2, h3, h4, p, li) {
  scroll-margin-top: calc(var(--docs-sticky-offset) + 8px);
}

/* 2) Card components */
.docs.docs--manual .doc-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: none;
  padding: 24px;
  border-radius: var(--docs-card-radius, 14px);
  border: var(--docs-card-border, 1px solid rgba(120, 176, 250, 0.22));
  background: rgba(255, 255, 255, 0.022);
  box-shadow: none;
}

.docs.docs--manual .doc-card > :first-child {
  margin-top: 0;
}

.docs.docs--manual .doc-card > :last-child {
  margin-bottom: 0;
}

.docs.docs--manual .doc-card :is(p, li, ul, ol, .feature-list) {
  max-width: none;
}

.docs.docs--manual .doc-card--compact {
  padding: 16px 18px;
  gap: 8px;
}

.docs.docs--manual .doc-card--spaced {
  margin-top: 24px;
}

.docs.docs--manual .doc-card--center {
  text-align: left;
  align-items: stretch;
}

.docs.docs--manual .doc-card--wide,
.docs.docs--manual .doc-card--span2 {
  grid-column: 1 / -1;
}

.docs.docs--manual .doc-subcard {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(120, 176, 250, 0.2);
  background: rgba(255, 255, 255, 0.016);
  box-shadow: none;
  text-align: left !important;
}

.docs.docs--manual .doc-subcard > :first-child {
  margin-top: 0;
}

.docs.docs--manual .doc-subcard > :last-child {
  margin-bottom: 0;
}

.docs.docs--manual .doc-subcard h3,
.docs.docs--manual .doc-subcard p {
  text-align: left !important;
}

/* Keep top-level content blocks inside a manual section from gluing together. */
.docs.docs--manual .doc-section > :is(.doc-card, .doc-grid, .docs-grid, .doc-subcard, .faq-list, .docs-callout, figure.screenshot):not(:first-child) {
  margin-top: 24px;
}

/* 2.2) Grid components */
.docs.docs--manual .docs-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}

.docs.docs--manual .docs-grid--two {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
}

.docs.docs--manual .docs-grid--quick-start {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
}

.docs.docs--manual .docs-grid--quick-start .doc-card--quickstart-full {
  grid-column: 1 / -1;
  max-width: clamp(320px, 48%, 520px);
  justify-self: start;
}

.docs.docs--manual .docs-grid--settings {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
}

.docs.docs--manual .docs-grid--settings .doc-card--wide {
  grid-column: 1 / -1;
}

/* Legacy fallback selectors (pre-normalized manuals). */
.docs.docs--manual .doc-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}

.docs.docs--manual .doc-grid.two {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
}

.docs.docs--manual #summary .doc-grid.two .doc-card--quickstart-full {
  grid-column: 1 / -1;
  max-width: clamp(320px, 48%, 520px);
  justify-self: start;
}

.docs.docs--manual #settings .doc-grid.three {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
}

.docs.docs--manual #settings .doc-grid.three .doc-card--wide {
  grid-column: 1 / -1;
}

/* Quick Start + Settings panel density tuning (manual pages only). */
.docs.docs--manual #summary .doc-grid.two,
.docs.docs--manual #settings .doc-grid.three,
.docs.docs--manual .docs-grid--quick-start,
.docs.docs--manual .docs-grid--settings {
  align-items: stretch;
}

.docs.docs--manual #summary .doc-grid.two > .doc-card,
.docs.docs--manual .docs-grid--quick-start > .doc-card,
.docs.docs--manual #settings .doc-grid.three > .doc-card,
.docs.docs--manual .docs-grid--settings > .doc-card {
  padding: 28px;
  border-color: rgba(120, 176, 250, 0.3);
  background: rgba(255, 255, 255, 0.028);
}

.docs.docs--manual #summary .doc-grid.two .doc-card--quickstart-full,
.docs.docs--manual .docs-grid--quick-start .doc-card--quickstart-full {
  grid-column: 1 / span 1;
  max-width: none;
  justify-self: stretch;
}

.docs.docs--manual #summary .doc-grid.two > .doc-card,
.docs.docs--manual .docs-grid--quick-start > .doc-card {
  min-height: 196px;
}

.docs.docs--manual #settings .doc-grid.three > .doc-card:not(.doc-card--wide):not(:first-child),
.docs.docs--manual .docs-grid--settings > .doc-card:not(.doc-card--wide):not(:first-child) {
  min-height: 208px;
}

.docs.docs--manual #settings > .doc-card.doc-card--spaced {
  padding: 28px;
  border-color: rgba(120, 176, 250, 0.3);
  background: rgba(255, 255, 255, 0.028);
}

/* 2.3) List components */
.docs.docs--manual .feature-list {
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.docs.docs--manual .feature-list li {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.012);
}

.docs.docs--manual .feature-list--divider {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
}

.docs.docs--manual .feature-list--divider li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
  padding-top: 10px;
}

.docs.docs--manual .feature-list--row {
  gap: 8px;
}

.docs.docs--manual .feature-list--row li {
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.008);
  box-shadow: none;
  line-height: 1.5;
}

.docs.docs--manual .step-list {
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow-step;
  display: block;
}

.docs.docs--manual .step-list > li {
  display: block;
  position: relative;
  margin: 0;
  padding: 10px 14px 10px 42px;
  border-radius: 9px;
  border: 1px solid rgba(120, 175, 250, 0.2);
  background: rgba(255, 255, 255, 0.008);
  max-width: none;
}

.docs.docs--manual .step-list > li + li {
  margin-top: 8px;
}

.docs.docs--manual .step-list > li::before {
  counter-increment: workflow-step;
  content: "0" counter(workflow-step);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(161, 202, 248, 0.9);
}

.docs.docs--manual .step-list > li.stepPill {
  max-width: 760px;
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

/* 2.4) Callouts */
.docs.docs--manual .docs-callout {
  width: 100%;
  max-width: 70ch;
  margin: 20px 0;
  padding: 14px 16px;
  border-radius: 12px;
}

.docs.docs--manual .docs-callout > :first-child {
  margin-top: 0;
}

.docs.docs--manual .docs-callout > :last-child {
  margin-bottom: 0;
}

.docs.docs--manual .docs-callout strong:first-child {
  margin-bottom: 6px;
}

.docs.docs--manual .docs-callout p + p {
  margin-top: 10px;
}

/* 2.5) Screenshots */
.docs.docs--manual .screenshot {
  margin: 24px 0;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.docs.docs--manual .screenshot picture,
.docs.docs--manual .screenshot img {
  display: block;
  width: auto;
  max-width: min(100%, var(--docs-manual-screenshot-max-width));
  border-radius: 12px;
  margin-inline: auto;
}

.docs.docs--manual .screenshot img {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.docs.docs--manual .screenshot figcaption {
  margin: 0;
  font-size: 0.9rem;
}

/* 2.6) FAQ */
.docs.docs--manual .faq-list {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.docs.docs--manual .faq-item {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px 22px;
  border-radius: 12px;
  border: var(--docs-card-border, 1px solid rgba(120, 176, 250, 0.22));
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.docs.docs--manual .faq-item > :first-child {
  margin-top: 0;
}

.docs.docs--manual .faq-item > :last-child {
  margin-bottom: 0;
}

.docs.docs--manual .faq-item h3 {
  text-align: left !important;
}

/* 3) Responsive behavior */
@media (max-width: 960px) {
  .docs.docs--manual {
    padding-bottom: calc(clamp(28px, 5vw, 56px) + 76px);
  }

  .docs.docs--manual .docs__body {
    grid-template-columns: 1fr;
  }

  .docs.docs--manual .docs__toc {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .docs.docs--manual .docs__toc .doc-search-trigger--toc {
    display: none;
  }

  .docs.docs--manual .docs__header-actions .doc-search-trigger {
    display: none;
  }

  .docs.docs--manual .doc-search-trigger--floating {
    position: fixed;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 10px));
    margin: 0;
    width: min(
      420px,
      calc(100vw - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px) - 24px)
    );
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row;
    z-index: 1400;
  }

  body.doc-search-open .docs.docs--manual .doc-search-trigger--floating {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 820px) {
  .docs.docs--manual .docs-grid--two,
  .docs.docs--manual .docs-grid--quick-start,
  .docs.docs--manual .doc-grid.two {
    grid-template-columns: 1fr;
  }

  .docs.docs--manual .docs-grid--quick-start .doc-card--quickstart-full,
  .docs.docs--manual #summary .doc-grid.two .doc-card--quickstart-full {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  .docs.docs--manual .docs-grid--settings,
  .docs.docs--manual #settings .doc-grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .docs.docs--manual .doc-search-trigger--floating {
    width: min(320px, calc(100vw - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px) - 48px));
    min-height: 44px;
    padding: 0 12px;
  }

  .docs.docs--manual .doc-search-trigger--floating .doc-search-trigger__label {
    font-size: 0.9rem;
  }
}
